Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

txpool: don't maintain the pool during major sync #13004

Merged
merged 19 commits into from
Jan 16, 2023
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
bad814f
txpool: don't maintain the pool during major sync
michalkucharczyk Dec 22, 2022
536df11
passing sync_oracle to maintain method
michalkucharczyk Dec 22, 2022
368653d
fixed: builder, txpool tests
michalkucharczyk Dec 22, 2022
b462bfc
Merge remote-tracking branch 'origin/master' into mku-txpool-avoid-cp…
michalkucharczyk Jan 10, 2023
f13c244
do not maintain tx-pool if node gone out of sync
michalkucharczyk Jan 10, 2023
8032569
EnactmentAction: all logic moved to EnactmentState
michalkucharczyk Jan 12, 2023
6149606
maintain guard logic moved directly to MaintainedTransactionPool
michalkucharczyk Jan 12, 2023
3b5ddc4
minor fixes
michalkucharczyk Jan 12, 2023
6fd64ff
EnactmentAction: all logic moved to EnactmentState (again)
michalkucharczyk Jan 12, 2023
f3487f0
SyncOracle fixes here and there
michalkucharczyk Jan 12, 2023
18e6aad
Merge remote-tracking branch 'origin/master' into mku-txpool-avoid-cp…
Jan 12, 2023
47f9fce
Update client/transaction-pool/src/enactment_state.rs
michalkucharczyk Jan 12, 2023
54cf4c0
Update client/transaction-pool/src/enactment_state.rs
michalkucharczyk Jan 12, 2023
d5261cc
sync_oracle removed
michalkucharczyk Jan 12, 2023
ed7fdf6
spelling + fmt + doc
michalkucharczyk Jan 12, 2023
c0f8d0f
Review suggestions applied
michalkucharczyk Jan 12, 2023
b12aee1
log::info -> debug
michalkucharczyk Jan 13, 2023
68e3192
Update client/transaction-pool/src/enactment_state.rs
michalkucharczyk Jan 13, 2023
05332a2
".git/.scripts/commands/fmt/fmt.sh"
Jan 16, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions client/transaction-pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ futures = "0.3.21"
futures-timer = "3.0.2"
linked-hash-map = "0.5.4"
log = "0.4.17"
num-traits = "0.2.8"
parking_lot = "0.12.1"
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"
Expand Down
Loading