diff options
Diffstat (limited to 'cmd/monkey')
-rw-r--r-- | cmd/monkey/feeder.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/monkey/feeder.go b/cmd/monkey/feeder.go index 7be6808d3..7c1419b91 100644 --- a/cmd/monkey/feeder.go +++ b/cmd/monkey/feeder.go @@ -63,7 +63,7 @@ func (m *Monkey) DistributeBanana(contract common.Address) { ToAddress: contract, Data: input, Nonce: nonce, - Gas: 210000, + Gas: 100000, } nonce += 1 } @@ -95,7 +95,7 @@ func (m *Monkey) Feed() { ToAddress: contract, Data: input, Nonce: nonce, - Gas: 210000, + Gas: 42000, } if *batch { ctxs[i] = ctx |