Skip to content

Commit

Permalink
refactor(rm pool expiry flush): stop flushing expired votes
Browse files Browse the repository at this point in the history
consensus is slow, however votes should make it into a block after some time.
  • Loading branch information
cong-or committed Dec 2, 2023
1 parent d8c86ed commit b2e806d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jormungandr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jormungandr"
version = "0.15.80"
version = "0.15.81"
authors = [ "[email protected]" ]
license = "MIT OR Apache-2.0"
repository = "https://github.com/input-output-hk/jormungandr"
Expand Down
2 changes: 1 addition & 1 deletion jormungandr/src/fragment/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ impl Process {
fragment_ids
);
pool.remove_added_to_block(fragment_ids, status);
pool.remove_expired_txs().await;

}.instrument(span).await
}
TransactionMsg::GetLogs(reply_handle) => {
Expand Down

0 comments on commit b2e806d

Please sign in to comment.