Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. "gasLimit": "0x47b760"
  2.  
  3. geth --networkid 123456 --rpc --rpcport "8545" --rpccorsdomain "*" --datadir ./enode1/data --syncmode 'full' --port "2001" --rpcaddr "0.0.0.0" --rpcapi "admin,db,eth,miner,web3,net,personal,txpool" --unlock '0x3261d0a3ed09ab00f67537e1df22741217d6bf04' --password password.txt
  4.  
  5. > eth.getBalance(eth.coinbase)
  6. 0
  7. > eth.sendTransaction({from:'0x4fa18a0cbbdc16dbadd4ffda9adad8ec68eec87b',to:'0xf16a44cf48cca573c89de520b21f7fe00391c705',value:web3.toWei(1,"ether")})
  8. "0xe97cee9e7aa36d3569b90c6290d363e12308ed33e0c4c73f73da56e053cc3e06"
  9. > eth.getBalance(eth.coinbase)
  10. 21000000000000
  11. > eth.gasPrice
  12. 1000000000
  13.  
  14. > web3.eth.getBlock(0).gasLimit
  15. 4700000
  16. > web3.eth.getBlock(1).gasLimit
  17. 4704588
  18. > web3.eth.getBlock('latest').gasLimit
  19. 6816517
  20. > web3.eth.getBlock('latest').gasLimit
  21. 6829834
  22. > web3.eth.getBlock('latest').gasLimit
  23. 6836502
  24. > web3.eth.getBlock('latest').gasLimit
  25. 6836502
  26. > web3.eth.getBlock('latest').gasLimit
  27. 6836502
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement