File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lightning-transaction-sync/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ where
108
108
// First check for any unconfirmed transactions and act on it immediately.
109
109
match maybe_await ! ( self . get_unconfirmed_transactions( & confirmables) ) {
110
110
Ok ( unconfirmed_txs) => {
111
- // Double-check the tip hash. If if it changed, a reorg happened since
111
+ // Double-check the tip hash. If it changed, a reorg happened since
112
112
// we started syncing and we need to restart last-minute.
113
113
let check_tip_hash = maybe_await ! ( self . client. get_tip_hash( ) ) ?;
114
114
if check_tip_hash != tip_hash {
@@ -144,7 +144,7 @@ where
144
144
145
145
match maybe_await ! ( self . get_confirmed_transactions( & sync_state) ) {
146
146
Ok ( confirmed_txs) => {
147
- // Double-check the tip hash. If if it changed, a reorg happened since
147
+ // Double-check the tip hash. If it changed, a reorg happened since
148
148
// we started syncing and we need to restart last-minute.
149
149
let check_tip_hash = maybe_await ! ( self . client. get_tip_hash( ) ) ?;
150
150
if check_tip_hash != tip_hash {
You can’t perform that action at this time.
0 commit comments