From d3c9496ee0256154477d0c74397a28c93a26af6f Mon Sep 17 00:00:00 2001 From: Jimmy Hu Date: Fri, 30 Nov 2018 19:07:56 +0800 Subject: monkey: increase amount and send random amount (#70) --- cmd/monkey/monkey.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cmd') 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, } -- cgit v1.2.3