Skip to content

Commit e7b90f7

Browse files
committed
Merge #10180: [trivial] Fix typos (tempoarily → temporarily, inadvertantly → inadvertently)
66082e0 [trivial] Fix typos (tempoarily → temporarily, inadvertantly → inadvertently) (practicalswift) Tree-SHA512: f377c379c9b6702894289c96fa50e64da01fa4e9353f8507ec5f1f58b0f3047fffdc473dffca61774f57793b82cf9e1c9b5f3d9a04fb864ccc1f44fc2a711f32
2 parents 0e8499c + 66082e0 commit e7b90f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wallet/wallet.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,12 +1124,12 @@ void CWallet::TransactionAddedToMempool(const CTransactionRef& ptx) {
11241124

11251125
void CWallet::BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex *pindex, const std::vector<CTransactionRef>& vtxConflicted) {
11261126
LOCK2(cs_main, cs_wallet);
1127-
// TODO: Tempoarily ensure that mempool removals are notified before
1127+
// TODO: Temporarily ensure that mempool removals are notified before
11281128
// connected transactions. This shouldn't matter, but the abandoned
11291129
// state of transactions in our wallet is currently cleared when we
11301130
// receive another notification and there is a race condition where
11311131
// notification of a connected conflict might cause an outside process
1132-
// to abandon a transaction and then have it inadvertantly cleared by
1132+
// to abandon a transaction and then have it inadvertently cleared by
11331133
// the notification that the conflicted transaction was evicted.
11341134

11351135
for (const CTransactionRef& ptx : vtxConflicted) {

0 commit comments

Comments
 (0)