Skip to content

Commit

Permalink
Set correct address in mempool
Browse files Browse the repository at this point in the history
  • Loading branch information
Bushstar committed Sep 8, 2023
1 parent 9e16fce commit 3f742f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/txmempool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ Res CTxMemPool::rebuildAccountsView(int height, const CCoinsViewCache& coinsCach
}
continue;
}
const auto nonce = evm_unsafe_try_get_next_valid_nonce_in_q(result, evmQueueId, txResult.sender);
const auto nonce = evm_unsafe_try_get_next_valid_nonce_in_q(result, evmQueueId, senderInfo.address);
if (!result.ok) {
AddToStaged(staged, vtx, iter);
if (ptx && ptx->GetHash() == tx.GetHash()) {
Expand Down

0 comments on commit 3f742f3

Please sign in to comment.