Implement getSlice API #206

Merged
prathamesh0 merged 21 commits from pm-get-slice into v4 2022-12-19 08:42:23 +00:00
Showing only changes of commit fc8f19d791 - Show all commits

View File

@ -105,10 +105,10 @@ const (
RetrieveBlockNumberAndStateLeafKeyForStorageRoot = `SELECT block_number, state_leaf_key RetrieveBlockNumberAndStateLeafKeyForStorageRoot = `SELECT block_number, state_leaf_key
FROM eth.state_cids, eth.state_accounts FROM eth.state_cids, eth.state_accounts
WHERE state_accounts.storage_root = $1 WHERE state_accounts.storage_root = $1
AND state_cids.state_id = state_accounts.state_path AND state_cids.state_path = state_accounts.state_path
AND state_cids.storage_root = state_accounts.header_id AND state_cids.header_id = state_accounts.header_id
AND state_cids.storage_root = state_accounts.block_number AND state_cids.block_number = state_accounts.block_number
ORDER BY block_number DESC ORDER BY state_accounts.block_number DESC
LIMIT 1` LIMIT 1`
) )