Skip to content

Commit

Permalink
ALL-3495 - Add getBlockByNumber to possible archive list - cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Smrecz committed Nov 22, 2023
1 parent e44d6c4 commit ac81075
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/service/rpc/evm/EvmUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ export const ARCHIVE_METHODS = [

export const POSSIBLE_ARCHIVE_METHODS = [
// Network state
{ method: 'getStorageAt', index: 2 }, // second param block
{ method: 'call', index: 1 }, // second param block
{ method: 'getBalance', index: 1 }, // second param block
{ method: 'getCode', index: 1 }, // second param block
{ method: 'getBlockByNumber', index: 0 }, // second param block
{ method: 'getStorageAt', index: 2 },
{ method: 'call', index: 1 },
{ method: 'getBalance', index: 1 },
{ method: 'getCode', index: 1 },
{ method: 'getBlockByNumber', index: 0 },
]

export const EvmUtils = {
Expand Down

0 comments on commit ac81075

Please sign in to comment.