From 778b5d736c1981397d75b27b62cc3d2f0bab2705 Mon Sep 17 00:00:00 2001 From: Jack May Date: Fri, 12 Nov 2021 14:12:34 -0800 Subject: [PATCH] Load nonce with fixed root (#21248) --- runtime/src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index e3e494d4c6..5109de86f5 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -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)| {