Skip to content

Commit

Permalink
refactor: remove contract filter (#98)
Browse files Browse the repository at this point in the history
Signed-off-by: Jingfu Wang <[email protected]>
  • Loading branch information
GeekArthur authored Aug 9, 2023
1 parent 53d7e5e commit 29e64c5
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions services/block_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,6 @@ func (s *BlockAPIService) populateTransactions(
}

for _, tx := range loadedTransactions {
// hardcode to skip txs from contract 0x08452299bae97172BC7edd0caC87D51ee1374BB5
// to unblock Base parsing issue due to tx heavy load
// issue tx: https://basescan.org/tx/0xad132f33a3c94755aa2c901965c7ed1b8042bd846cd1df2e97176c8cdda0b39e
if tx.Transaction.To() != nil && tx.Transaction.To().String() == "0x08452299bae97172BC7edd0caC87D51ee1374BB5" {
continue
}

if tx.IsBridgedTxn {
// Bridge tx is already handled in PopulateCrossChainTransactions flow
continue
Expand Down

0 comments on commit 29e64c5

Please sign in to comment.