Skip to content

Commit 66082e0

Browse files
[trivial] Fix typos (tempoarily → temporarily, inadvertantly → inadvertently)
1 parent 67023e9 commit 66082e0

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
@@ -1141,12 +1141,12 @@ void CWallet::TransactionAddedToMempool(const CTransactionRef& ptx) {
11411141

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

11521152
for (const CTransactionRef& ptx : vtxConflicted) {

0 commit comments

Comments
 (0)