This commit is contained in:
Ludo Galabru
2023-04-13 14:23:19 -04:00
parent 4ce0e9e5db
commit 0337f92ce0
2 changed files with 2 additions and 2 deletions

View File

@@ -401,7 +401,7 @@ pub fn standardize_bitcoin_block(
stacks_operations,
ordinal_operations,
proof: None,
fee: sats_out - sats_in,
fee: sats_in - sats_out,
},
};
transactions.push(tx);

View File

@@ -1172,7 +1172,7 @@ pub async fn start_observer_commands_handler(
}
ObserverCommand::PropagateStacksMempoolEvent(mempool_event) => {
ctx.try_log(|logger| {
slog::info!(logger, "Handling PropagateStacksMempoolEvent command")
slog::debug!(logger, "Handling PropagateStacksMempoolEvent command")
});
if let Some(ref tx) = observer_events_tx {
let _ = tx.send(ObserverEvent::StacksChainMempoolEvent(mempool_event));