cmd/chaincmd: need rootchain.gasprice flag with deploy(deployRootChain) cmd
Closed this issue · 4 comments
shingonu commented
we have stakingFlags
and plasmaFlags
. deploy
cmd has stakingFlags.
I think we need to make RootChainDeployGasPrice flag with deploy cmd.
shingonu commented
sample script:
./build/bin/geth deploy $GENESIS_1 1021 true 2 \
--datadir $DATADIR_1 \
--rootchain.url $JSONRPC \
--unlock $ADDR1 \
--password $PWD \
--rootchain.sender $ADDR1 \
--rootchain.deployGasPrice 20000000000
shingonu commented
- considering using same flag name (gasPrice, deployGasPrice)
- considering merging
chaincmd.go
andstakecmd.go
shingonu commented
updated:
--rootchain.deploygasprice value Transaction gas price to deploy rootchain in GWei (default: 10000000000). This flag applies only to deploy command. (default: 10000000000)