Load nonce with fixed root (#21248)

This commit is contained in:
Jack May 2021-11-12 14:12:34 -08:00 committed by GitHub
parent b0ca335463
commit 778b5d736c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3543,7 +3543,7 @@ impl Bank {
) -> Option<(Pubkey, AccountSharedData)> {
tx.get_durable_nonce()
.and_then(|nonce_pubkey| {
self.get_account(nonce_pubkey)
self.get_account_with_fixed_root(nonce_pubkey)
.map(|acc| (*nonce_pubkey, acc))
})
.filter(|(_pubkey, nonce_account)| {