Skip to content

Commit 0337f92

Browse files
author
Ludo Galabru
committed
fix: fee
1 parent 4ce0e9e commit 0337f92

File tree

2 files changed

+2
-2
lines changed
  • components/chainhook-event-observer/src

2 files changed

+2
-2
lines changed

components/chainhook-event-observer/src/indexer/bitcoin/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ pub fn standardize_bitcoin_block(
401401
stacks_operations,
402402
ordinal_operations,
403403
proof: None,
404-
fee: sats_out - sats_in,
404+
fee: sats_in - sats_out,
405405
},
406406
};
407407
transactions.push(tx);

components/chainhook-event-observer/src/observer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ pub async fn start_observer_commands_handler(
11721172
}
11731173
ObserverCommand::PropagateStacksMempoolEvent(mempool_event) => {
11741174
ctx.try_log(|logger| {
1175-
slog::info!(logger, "Handling PropagateStacksMempoolEvent command")
1175+
slog::debug!(logger, "Handling PropagateStacksMempoolEvent command")
11761176
});
11771177
if let Some(ref tx) = observer_events_tx {
11781178
let _ = tx.send(ObserverEvent::StacksChainMempoolEvent(mempool_event));

0 commit comments

Comments
 (0)