pub trait TrieStorageCursor: TrieCursor {
// Required method
fn set_hashed_address(&mut self, hashed_address: B256);
}Expand description
A cursor for traversing storage trie nodes.
Required Methods§
Sourcefn set_hashed_address(&mut self, hashed_address: B256)
fn set_hashed_address(&mut self, hashed_address: B256)
Set the hashed address for the storage trie cursor.
§Important
After calling this method, the subsequent operation MUST be a TrieCursor::seek or
TrieCursor::seek_exact call.