File tree 2 files changed +2
-2
lines changed
components/chainhook-event-observer/src
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -401,7 +401,7 @@ pub fn standardize_bitcoin_block(
401
401
stacks_operations,
402
402
ordinal_operations,
403
403
proof : None ,
404
- fee : sats_out - sats_in ,
404
+ fee : sats_in - sats_out ,
405
405
} ,
406
406
} ;
407
407
transactions. push ( tx) ;
Original file line number Diff line number Diff line change @@ -1172,7 +1172,7 @@ pub async fn start_observer_commands_handler(
1172
1172
}
1173
1173
ObserverCommand :: PropagateStacksMempoolEvent ( mempool_event) => {
1174
1174
ctx. try_log ( |logger| {
1175
- slog:: info !( logger, "Handling PropagateStacksMempoolEvent command" )
1175
+ slog:: debug !( logger, "Handling PropagateStacksMempoolEvent command" )
1176
1176
} ) ;
1177
1177
if let Some ( ref tx) = observer_events_tx {
1178
1178
let _ = tx. send ( ObserverEvent :: StacksChainMempoolEvent ( mempool_event) ) ;
You can’t perform that action at this time.
0 commit comments