Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add(metrics): Track mempool actions and size bucketed by weight (copy of #6972, credit @str4d) #7019

Merged
merged 8 commits into from
Jul 18, 2023
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/main' into str4d-metrics-mempool…
…-composition
  • Loading branch information
oxarbitrage committed Jul 17, 2023
commit d00ecdbf23bbdf7b00cf9f8925e6bb206b53bc19
4 changes: 2 additions & 2 deletions zebrad/src/components/mempool/tests/prop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ proptest! {
fn storage_is_cleared_on_multiple_chain_resets(
network in any::<Network>(),
mut previous_chain_tip in any::<DisplayToDebug<ChainTipBlock>>(),
mut transactions in vec(any::<VerifiedUnminedTx>().prop_map(|mut tx| tx.fix_arbitrary_generated_action_overflows()), 0..CHAIN_LENGTH),
fake_chain_tips in vec(any::<DisplayToDebug<FakeChainTip>>(), 0..CHAIN_LENGTH),
mut transactions in vec(any::<DisplayToDebug<VerifiedUnminedTx>>().prop_map(|mut tx| tx.fix_arbitrary_generated_action_overflows()), 0..CHAIN_LENGTH),
fake_chain_tips in vec(any::<TypeNameToDebug<FakeChainTip>>(), 0..CHAIN_LENGTH),
) {
let (runtime, _init_guard) = zebra_test::init_async();

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.