We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e9004 commit 52c08c6Copy full SHA for 52c08c6
fvm/evm/offchain/utils/replay.go
@@ -96,6 +96,9 @@ func (a *EVMEventsAccumulator) HasBlockEvent(
96
return evmBlockEvent, a.pendingEVMTxEvents, false
97
}
98
99
+ pendingEVMTxEvents := a.pendingEVMTxEvents
100
+ // reset pending events
101
+ a.pendingEVMTxEvents = make([]events.TransactionEventPayload, 0)
102
// if there is an EVM block event, we return the EVM block and the accumulated tx events
- return evmBlockEvent, a.pendingEVMTxEvents, true
103
+ return evmBlockEvent, pendingEVMTxEvents, true
104
fvm/evm/offchain/utils/verify.go
@@ -79,6 +79,8 @@ func OffchainReplayBackwardCompatibilityTest(
79
if err != nil {
80
return err
81
82
+
83
+ continue
84
85
86
if IsSporkHeight(chainID, height) {
0 commit comments