diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-11-30 19:07:56 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:58 +0800 |
commit | 3c18200709504b3ff4cf0c824617a1e6447a64f9 (patch) | |
tree | 492c83553d5b03299a36edb576294917fd3efff2 | |
parent | 04766b3ec003ac40583aae533e2aa318aced1070 (diff) | |
download | dexon-3c18200709504b3ff4cf0c824617a1e6447a64f9.tar dexon-3c18200709504b3ff4cf0c824617a1e6447a64f9.tar.gz dexon-3c18200709504b3ff4cf0c824617a1e6447a64f9.tar.bz2 dexon-3c18200709504b3ff4cf0c824617a1e6447a64f9.tar.lz dexon-3c18200709504b3ff4cf0c824617a1e6447a64f9.tar.xz dexon-3c18200709504b3ff4cf0c824617a1e6447a64f9.tar.zst dexon-3c18200709504b3ff4cf0c824617a1e6447a64f9.zip |
monkey: increase amount and send random amount (#70)
-rw-r--r-- | cmd/monkey/monkey.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/monkey/monkey.go b/cmd/monkey/monkey.go index b312ea473..e7e5a53c9 100644 --- a/cmd/monkey/monkey.go +++ b/cmd/monkey/monkey.go @@ -216,7 +216,7 @@ func (m *Monkey) Distribute() { for i, key := range m.keys { address := crypto.PubkeyToAddress(key.PublicKey) amount := new(big.Int) - amount.SetString("1000000000000000000", 10) + amount.SetString("1000000000000000000000", 10) ctxs[i] = &transferContext{ Key: m.source, ToAddress: address, @@ -237,10 +237,12 @@ func (m *Monkey) Crazy() { ctxs := make([]*transferContext, len(m.keys)) for i, key := range m.keys { to := crypto.PubkeyToAddress(m.keys[rand.Int()%len(m.keys)].PublicKey) + amount := new(big.Int) + amount.SetString(fmt.Sprintf("%d000000000000000", rand.Intn(10)+1), 10) ctx := &transferContext{ Key: key, ToAddress: to, - Amount: big.NewInt(1), + Amount: amount, Nonce: nonce, Gas: 21000, } |