Load nonce with fixed root (#21248)
This commit is contained in:
@ -3543,7 +3543,7 @@ impl Bank {
|
|||||||
) -> Option<(Pubkey, AccountSharedData)> {
|
) -> Option<(Pubkey, AccountSharedData)> {
|
||||||
tx.get_durable_nonce()
|
tx.get_durable_nonce()
|
||||||
.and_then(|nonce_pubkey| {
|
.and_then(|nonce_pubkey| {
|
||||||
self.get_account(nonce_pubkey)
|
self.get_account_with_fixed_root(nonce_pubkey)
|
||||||
.map(|acc| (*nonce_pubkey, acc))
|
.map(|acc| (*nonce_pubkey, acc))
|
||||||
})
|
})
|
||||||
.filter(|(_pubkey, nonce_account)| {
|
.filter(|(_pubkey, nonce_account)| {
|
||||||
|
Reference in New Issue
Block a user