Skip to content

Commit b2e806d

Browse files
committed
refactor(rm pool expiry flush): stop flushing expired votes
consensus is slow, however votes should make it into a block after some time.
1 parent d8c86ed commit b2e806d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jormungandr/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jormungandr"
3-
version = "0.15.80"
3+
version = "0.15.81"
44
authors = [ "[email protected]" ]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/input-output-hk/jormungandr"

jormungandr/src/fragment/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ impl Process {
161161
fragment_ids
162162
);
163163
pool.remove_added_to_block(fragment_ids, status);
164-
pool.remove_expired_txs().await;
164+
165165
}.instrument(span).await
166166
}
167167
TransactionMsg::GetLogs(reply_handle) => {

0 commit comments

Comments
 (0)