diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-03-07 12:59:49 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | d6557f080c206ba0ff322d39005af642eb58b12f (patch) | |
tree | 1ba00ccd96149bd317a782a9bf836724ec7c07c7 /test/keygen.go | |
parent | 10a21c6b7eb2c4d2a186a3a355986a0605b41ca7 (diff) | |
download | dexon-d6557f080c206ba0ff322d39005af642eb58b12f.tar dexon-d6557f080c206ba0ff322d39005af642eb58b12f.tar.gz dexon-d6557f080c206ba0ff322d39005af642eb58b12f.tar.bz2 dexon-d6557f080c206ba0ff322d39005af642eb58b12f.tar.lz dexon-d6557f080c206ba0ff322d39005af642eb58b12f.tar.xz dexon-d6557f080c206ba0ff322d39005af642eb58b12f.tar.zst dexon-d6557f080c206ba0ff322d39005af642eb58b12f.zip |
test: update test parameters (#229)
* test: update test parameters
* update smoke test parameter
Diffstat (limited to 'test/keygen.go')
-rw-r--r-- | test/keygen.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/keygen.go b/test/keygen.go index e7441e146..26b8385ed 100644 --- a/test/keygen.go +++ b/test/keygen.go @@ -50,8 +50,8 @@ func main() { address := crypto.PubkeyToAddress(privKey.PublicKey) genesis.Alloc[address] = core.GenesisAccount{ - Balance: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e6)), - Staked: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(5e5)), + Balance: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(2e6)), + Staked: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e6)), PublicKey: crypto.FromECDSAPub(&privKey.PublicKey), NodeInfo: core.NodeInfo{ Name: fmt.Sprintf("DEXON Test Node %d", i), |