Browse Source
Bug fix: overflow
Checking for confirmations 0 results in an overflow.
compile-for-aarch64
Philipp Hoenisch
3 years ago
No known key found for this signature in database
GPG Key ID: E5F8E74C672BC666
1 changed files with
1 additions and
1 deletions
-
daemon/src/monitor.rs
|
@ -244,7 +244,7 @@ where |
|
|
.entry((revoked_commit_tx.0, revoked_commit_tx.1.clone())) |
|
|
.entry((revoked_commit_tx.0, revoked_commit_tx.1.clone())) |
|
|
.or_default() |
|
|
.or_default() |
|
|
.push(( |
|
|
.push(( |
|
|
ScriptStatus::with_confirmations(0), |
|
|
ScriptStatus::InMempool, |
|
|
Event::RevokedTransactionFound(order_id), |
|
|
Event::RevokedTransactionFound(order_id), |
|
|
)); |
|
|
)); |
|
|
} |
|
|
} |
|
|