We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29c29ef commit e397b70Copy full SHA for e397b70
1 file changed
packages/evm/core/src/db.rs
@@ -595,9 +595,8 @@ impl PersistentDB {
595
}
596
597
598
-
599
pub fn get_historical_account_info(
600
- &mut self,
+ &self,
601
block_number: u64,
602
address: Address,
603
) -> Result<(Option<AccountInfo>, bool), Error> {
@@ -635,7 +634,7 @@ impl PersistentDB {
635
634
636
637
pub fn get_legacy_attributes(
638
639
640
) -> Result<Option<LegacyAccountAttributes>, Error> {
641
let tx_env = self.env.read_txn()?;
@@ -648,7 +647,7 @@ impl PersistentDB {
648
647
649
650
pub fn get_legacy_cold_wallet(
651
652
address: LegacyAddress,
653
) -> Result<Option<LegacyColdWallet>, Error> {
654
0 commit comments