Skip to content

Commit f3d7911

Browse files
committed
f package
1 parent 09039ca commit f3d7911

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lightning/src/chain/onchaintx.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ enum OnchainEvent {
7979
/// Outpoint under claim process by our own tx, once this one get enough confirmations, we remove it from
8080
/// bump-txn candidate buffer.
8181
Claim {
82-
package_id: PackageId,
82+
package_id: PackageID,
8383
},
8484
/// Claim tx aggregate multiple claimable outpoints. One of the outpoint may be claimed by a counterparty party tx.
8585
/// In this case, we need to drop the outpoint and regenerate a new claim tx. By safety, we keep tracking
@@ -809,7 +809,8 @@ impl<ChannelSigner: Sign> OnchainTxHandler<ChannelSigner> {
809809
// been aggregated in a single tx and claimed so atomically
810810
if let Some(request) = self.pending_claim_requests.remove(&package_id) {
811811
for outpoint in request.outpoints() {
812-
log_debug!(logger, "Removing claim tracking for {} due to maturation of claim tx {}.", outpoint, package_id);
812+
log_debug!(logger, "Removing claim tracking for {} due to maturation of claim tx {}.",
813+
outpoint, log_bytes!(package_id));
813814
self.claimable_outpoints.remove(&outpoint);
814815
#[cfg(anchors)]
815816
self.pending_claim_events.remove(&package_id);

0 commit comments

Comments
 (0)