fix crasher

This commit is contained in:
Sina Mahmoodi 2023-09-29 16:34:45 +02:00
parent b3996e4719
commit 100c593ad9

View file

@ -1303,7 +1303,7 @@ func (s *BlockChainAPI) MulticallV1(ctx context.Context, opts multicallOpts, blo
for i, call := range block.Calls { for i, call := range block.Calls {
// setDefaults will consult txpool's nonce tracker. Work around that. // setDefaults will consult txpool's nonce tracker. Work around that.
if call.Nonce == nil { if call.Nonce == nil {
nonce := state.GetNonce(*call.From) nonce := state.GetNonce(call.from())
call.Nonce = (*hexutil.Uint64)(&nonce) call.Nonce = (*hexutil.Uint64)(&nonce)
} }
// Let the call run wild unless explicitly specified. // Let the call run wild unless explicitly specified.