Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
goshawk-3 committed Aug 13, 2024
1 parent 1deb4ce commit b78322c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/src/chain/acceptor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,8 @@ impl<DB: database::DB, VM: vm::VMExecution, N: Network> Acceptor<N, DB, VM> {
// Attempt to resubmit transactions back to mempool.
// An error here is not considered critical.
for tx in b.txs().iter() {
if let Err(e) = Mempool::add_tx(t, tx) {
if let Err(e) = Mempool::add_tx(t, tx, 0) {
//TODO:
warn!("failed to resubmit transactions: {e}")
};
}
Expand Down

0 comments on commit b78322c

Please sign in to comment.