diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2017-12-07 01:08:29 +0800 |
---|---|---|
committer | Yoichi Hirai <i@yoichihirai.com> | 2017-12-07 01:08:29 +0800 |
commit | 0a4f67833ea07712eba5cf17cb22c1231239678a (patch) | |
tree | 901acc3b01b58ec5e13dcbba9819935be4d0a06d /RPCTests/README.md | |
parent | 5f5f40768c09ba7ca9777a7157740f4cf97c382f (diff) | |
download | tangerine-tests-0a4f67833ea07712eba5cf17cb22c1231239678a.tar tangerine-tests-0a4f67833ea07712eba5cf17cb22c1231239678a.tar.gz tangerine-tests-0a4f67833ea07712eba5cf17cb22c1231239678a.tar.bz2 tangerine-tests-0a4f67833ea07712eba5cf17cb22c1231239678a.tar.lz tangerine-tests-0a4f67833ea07712eba5cf17cb22c1231239678a.tar.xz tangerine-tests-0a4f67833ea07712eba5cf17cb22c1231239678a.tar.zst tangerine-tests-0a4f67833ea07712eba5cf17cb22c1231239678a.zip |
Move to README.md
Diffstat (limited to 'RPCTests/README.md')
-rw-r--r-- | RPCTests/README.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/RPCTests/README.md b/RPCTests/README.md new file mode 100644 index 000000000..95426fbe7 --- /dev/null +++ b/RPCTests/README.md @@ -0,0 +1,35 @@ +See https://github.com/ethereum/cpp-ethereum/blob/7cc43bed7de890a496d7238092837c30c7e90729/scripts/runalltests.sh#L38 for how cpp-ethereum uses this. + +FAQ +=== + +Cannot find module +------------------ + +I get an error: +``` +$ node main.js $workdir/cpp-ethereum/build/eth/eth +module.js:471 + throw err; + ^ + +Error: Cannot find module '/home/yh/src/tests/RLPTests/main.js' + at Function.Module._resolveFilename (module.js:469:15) + at Function.Module._load (module.js:417:25) + at Module.runMain (module.js:604:10) + at run (bootstrap_node.js:393:7) + at startup (bootstrap_node.js:150:9) + at bootstrap_node.js:508:3 +``` + +Answer: if your `main.js` is in your current directory, use `./main.js` instead of just `main.js`. + + +Cannot find module web3 +----------------------- + +I get an error: +``` +$ node ./main.js ~/src/cpp-ethereum/build/eth/eth +(node:27647) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Cannot find module 'web3' +``` |