You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@bshastry I did run into the same problem and I was able to get rid of the error by:
in Geth, added genesis.json with enough balance for the account that is used to send transactions
in tx-fuzz, changed the private key with the one corresponding to the address that is used to send transactions
in tx-fuzz, changed the value to be sent, so that it doesn't run out of balance
// changed to SK corresponding to the address that is used to send transactionssk:=crypto.ToECDSAUnsafe(common.FromHex(txfuzz.SK2))
// big.NewInt(10) so it does not run out of balancevalue:=new(big.Int).Mul(big.NewInt(100000), big.NewInt(params.Ether))
Geth cmdline invocation:
Tx-fuzz invocation (other options such as
send
,airdrop
etc. run into same error):Geth log
How could this be avoided so livefuzzer can continue fuzzing?
The text was updated successfully, but these errors were encountered: