Skip to content

Commit

Permalink
Merge branch 'master' into electra-support
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jun 18, 2024
2 parents 65b07d1 + d64de3a commit e0e34cf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion db/schema/pgsql/20240613235955_fix-slots-data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- +goose StatementBegin

UPDATE slots
SET eth_block_extra = '0x', eth_block_extra_text = ''
SET eth_block_extra = '', eth_block_extra_text = ''
WHERE state_root IS NOT NULL AND eth_block_extra IS NULL;

-- +goose StatementEnd
Expand Down
2 changes: 1 addition & 1 deletion db/schema/sqlite/20240613235955_fix-slots-data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- +goose StatementBegin

UPDATE slots
SET eth_block_extra = '0x', eth_block_extra_text = ''
SET eth_block_extra = '', eth_block_extra_text = ''
WHERE state_root IS NOT NULL AND eth_block_extra IS NULL;

-- +goose StatementEnd
Expand Down
1 change: 0 additions & 1 deletion services/mevindexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,6 @@ func (mev *MevIndexer) loadMevBlocksFromRelay(indexer *indexer.Indexer, relay *t
}
mev.mevBlockCache[blockHash] = cachedBlock
} else {
cachedBlock := mev.mevBlockCache[blockHash]
if cachedBlock.block.SeenbyRelays&relayFlag > 0 {
continue
}
Expand Down

0 comments on commit e0e34cf

Please sign in to comment.