Skip to content

Commit

Permalink
Update gas parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
vrde committed Feb 11, 2019
1 parent 04dc464 commit 57cf1b0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -41,3 +41,4 @@ Ganache sometimes is not enough.
[parity:devchain]: https://wiki.parity.io/Private-development-chain
[remix]: http://remix.ethereum.org/
[geth-testnet]: https://hackernoon.com/setup-your-own-private-proof-of-authority-ethereum-network-with-geth-9a0a3750cda8
[hudson:gas]: https://hudsonjameson.com/2017-06-27-accounts-transactions-gas-ethereum/
Empty file modified cli.js 100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion genesis.geth.json
Expand Up @@ -17,7 +17,7 @@
"nonce": "0x0",
"timestamp": "0x5c5c5fff",
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"gasLimit": "0x47b760",
"gasLimit": "0x7A1200",
"difficulty": "0x1",
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"coinbase": "0x0000000000000000000000000000000000000000",
Expand Down
6 changes: 5 additions & 1 deletion main.js
Expand Up @@ -139,7 +139,9 @@ function run(client, workdir) {
"--rpcapi",
"personal,db,eth,net,web3,txpool,miner,debug",
"--gasprice",
"1",
"4000000000",
"--targetgaslimit",
"4712388",
"--rpccorsdomain",
"*",
"--keystore",
Expand All @@ -157,6 +159,8 @@ function run(client, workdir) {
paths.genesis,
"--keys-path",
paths.keys,
"--gasprice",
"4000000000",
"--jsonrpc-cors",
"all",
"--jsonrpc-apis",
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ethnode",
"version": "0.0.3",
"version": "0.0.4",
"description": "Run an Ethereum node for development.",
"homepage": "https://github.com/vrde/ethnode",
"main": "main.js",
Expand Down

0 comments on commit 57cf1b0

Please sign in to comment.