We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3346d9f commit dbbc1ebCopy full SHA for dbbc1eb
1 file changed
crates/store/src/state.rs
@@ -1022,11 +1022,11 @@ impl State {
1022
// Validate block exists in the blockchain before querying the database
1023
self.validate_block_exists(block_num).await?;
1024
1025
- let account_header = self
1026
- .db
1027
- .select_account_header_at_block(account_id, block_num)
1028
- .await?
1029
- .ok_or(DatabaseError::AccountAtBlockHeightNotFoundInDb(account_id, block_num))?;
+ let account_header =
+ self.db
+ .select_account_header_at_block(account_id, block_num)
+ .await?
+ .ok_or(DatabaseError::AccountAtBlockHeightNotFoundInDb(account_id, block_num))?;
1030
1031
let account_code = match code_commitment {
1032
Some(commitment) if commitment == account_header.code_commitment() => None,
0 commit comments