mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 00:43:46 +00:00
Merge pull request #21 from primevprotocol/fee-cleanup
config: fee param cleanup
This commit is contained in:
commit
552a9cf940
3 changed files with 9 additions and 15 deletions
|
|
@ -94,7 +94,9 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then
|
||||||
--netrestrict $NET_RESTRICT \
|
--netrestrict $NET_RESTRICT \
|
||||||
"$NAT_FLAG" \
|
"$NAT_FLAG" \
|
||||||
--txpool.accountqueue=512 \
|
--txpool.accountqueue=512 \
|
||||||
--rpc.allow-unprotected-txs
|
--rpc.allow-unprotected-txs \
|
||||||
|
--miner.gasprice=1000000000 \
|
||||||
|
--gpo.maxprice=500000000000 \
|
||||||
|
|
||||||
elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
||||||
echo "Starting signer node"
|
echo "Starting signer node"
|
||||||
|
|
@ -140,6 +142,8 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then
|
||||||
--authrpc.port="8551" \
|
--authrpc.port="8551" \
|
||||||
--authrpc.vhosts="*" \
|
--authrpc.vhosts="*" \
|
||||||
--txpool.accountqueue=512 \
|
--txpool.accountqueue=512 \
|
||||||
|
--miner.gasprice=1000000000 \
|
||||||
|
--gpo.maxprice=500000000000 \
|
||||||
"$NAT_FLAG"
|
"$NAT_FLAG"
|
||||||
|
|
||||||
elif [ "$GETH_NODE_TYPE" = "member" ]; then
|
elif [ "$GETH_NODE_TYPE" = "member" ]; then
|
||||||
|
|
@ -180,6 +184,8 @@ elif [ "$GETH_NODE_TYPE" = "member" ]; then
|
||||||
--authrpc.port="8551" \
|
--authrpc.port="8551" \
|
||||||
--authrpc.vhosts="*" \
|
--authrpc.vhosts="*" \
|
||||||
--txpool.accountqueue=512 \
|
--txpool.accountqueue=512 \
|
||||||
|
--miner.gasprice=1000000000 \
|
||||||
|
--gpo.maxprice=500000000000 \
|
||||||
"$NAT_FLAG"
|
"$NAT_FLAG"
|
||||||
else
|
else
|
||||||
echo "Invalid GETH_NODE_TYPE specified"
|
echo "Invalid GETH_NODE_TYPE specified"
|
||||||
|
|
|
||||||
|
|
@ -60,11 +60,5 @@
|
||||||
"0x57508f0B0f3426758F1f3D63ad4935a7c9383620": {
|
"0x57508f0B0f3426758F1f3D63ad4935a7c9383620": {
|
||||||
"balance": "10000000000000000000000000000"
|
"balance": "10000000000000000000000000000"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"number": "0x0",
|
|
||||||
"gasUsed": "0x0",
|
|
||||||
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
||||||
"baseFeePerGas": "0x3b9aca00",
|
|
||||||
"excessBlobGas": null,
|
|
||||||
"blobGasUsed": null
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,11 +45,5 @@
|
||||||
"0x3fab184622dc19b6109349b94811493bf2a45362": {
|
"0x3fab184622dc19b6109349b94811493bf2a45362": {
|
||||||
"balance": "10000000000000000000000"
|
"balance": "10000000000000000000000"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"number": "0x0",
|
|
||||||
"gasUsed": "0x0",
|
|
||||||
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
|
|
||||||
"baseFeePerGas": "0x3b9aca00",
|
|
||||||
"excessBlobGas": null,
|
|
||||||
"blobGasUsed": null
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue