Add sharding alias

Former-commit-id: d733b0990ea46cbcdd321599be7448f085388fbc [formerly a68721a6073690fd578e26fb1a83f0dc46837836]
Former-commit-id: 2381d5d021b641023aede79f77c446254b954d17
This commit is contained in:
Preston Van Loon 2018-01-20 18:45:40 -05:00
parent 42af6aad7d
commit 167cdf7914
2 changed files with 2 additions and 3 deletions

View File

@ -10,7 +10,8 @@ import (
var (
shardingClientCommand = cli.Command{
Action: utils.MigrateFlags(shardingClient),
Name: "shard",
Name: "sharding",
Aliases: []string{"shard"},
Usage: "Start a sharding client",
ArgsUsage: "[endpoint]",
Flags: []cli.Flag{utils.DataDirFlag, utils.PasswordFileFlag, utils.NetworkIdFlag},

View File

@ -21,6 +21,4 @@ var (
depositSize = new(big.Int).Exp(big.NewInt(10), big.NewInt(20), nil) // 100 ETH
// Gas limit to create contract
contractGasLimit = uint64(4700000) // Max is 4712388
// Gas price for contract creation
contractGasPrice = new(big.Int).SetInt64(18000000000)
)