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
I guess it doesn't make sense to have prefetch=true on tests that do not actually process blocks properly, but it would be good to have @karalabe check that there isn't some deeper issue here.
This is an odd one. Prefetching should run the next block in advance, which in this case will genuinely fail... but that failure should never bubble up outside, since we're only doing it to pre-load data, we don't actually keep the execution result.
@ramilexe Do you actually hit an error, or are you just pondering about what's happening under the hood?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
When I was working on PR #19721 found a bug with
NoPrefetch
parameter in config:Without
NoPrefetch: true
(line 188)go-ethereum/ethclient/ethclient_test.go
Lines 187 to 192 in cc479b8
When I try to add 2 consecutive transactions with nonce 0 and 1 (line 240 and 247):
go-ethereum/ethclient/ethclient_test.go
Lines 234 to 254 in cc479b8
I get error
nonce too high
on line 172:go-ethereum/core/state_transition.go
Lines 167 to 178 in cc479b8
I think it related to #19328
/cc @karalabe @holiman
The text was updated successfully, but these errors were encountered: