@@ -14,7 +14,6 @@ import (
14
14
"github.com/onflow/flow-go/fvm/environment"
15
15
"github.com/onflow/flow-go/fvm/evm"
16
16
"github.com/onflow/flow-go/fvm/evm/events"
17
- "github.com/onflow/flow-go/fvm/evm/handler"
18
17
"github.com/onflow/flow-go/fvm/evm/offchain/blocks"
19
18
evmStorage "github.com/onflow/flow-go/fvm/evm/offchain/storage"
20
19
"github.com/onflow/flow-go/fvm/evm/offchain/sync"
@@ -58,7 +57,8 @@ func OffchainReplayBackwardCompatibilityTest(
58
57
59
58
// setup account status at EVM root block
60
59
if isEVMRootHeight (chainID , flowStartHeight ) {
61
- err = bpStorage .SetValue (rootAddr [:], []byte (flow .AccountStatusKey ), environment .NewAccountStatus ().ToBytes ())
60
+ err = bpStorage .SetValue (rootAddr [:], []byte (flow .AccountStatusKey ),
61
+ environment .NewAccountStatus ().ToBytes ())
62
62
if err != nil {
63
63
return err
64
64
}
@@ -166,7 +166,6 @@ func OffchainReplayBackwardCompatibilityTest(
166
166
}
167
167
168
168
actualUpdates [k ] = v
169
-
170
169
}
171
170
172
171
err = verifyRegisterUpdates (expectedUpdates , actualUpdates )
@@ -181,7 +180,8 @@ func OffchainReplayBackwardCompatibilityTest(
181
180
}
182
181
183
182
func verifiableKeys (key flow.RegisterID ) bool {
184
- return handler .IsBlockHashListBucketKeyFormat (key ) || handler .IsBlockHashListMetaKey (key )
183
+ return false
184
+ // return handler.IsBlockHashListBucketKeyFormat(key) || handler.IsBlockHashListMetaKey(key)
185
185
}
186
186
187
187
func parseEVMEvents (evts flow.EventsList ) (* events.BlockEventPayload , []events.TransactionEventPayload , error ) {
0 commit comments