Guest User

Untitled

a guest
Oct 18th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. const Web3 = require("web3");
  2. const web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));
  3.  
  4. for (var i = 0; i < 10000; i++) {
  5. console.log("Start: " + i);
  6. console.log(web3.eth.getBalance("0x0000000000000000000000000000000000000000"));
  7. console.log(web3.eth.getCode("0x0000000000000000000000000000000000000000"));
  8. }
  9.  
  10. Start: 225
  11. { [String: '7.221712092140691731494e+21'] s: 1, e: 21, c: [ 72217120, 92140691731494 ] }
Add Comment
Please, Sign In to add comment