mirror of
https://github.com/alexgo-io/bitcoin-indexer.git
synced 2026-01-12 16:52:57 +08:00
fix: fee
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user