Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Fix txpool tests.
  • Loading branch information
tomusdrw committed Mar 4, 2020
commit 6c4afe5dcda4e1c03d0ae150090dab5124b0f5ae
6 changes: 5 additions & 1 deletion client/transaction-pool/graph/src/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,11 @@ mod tests {
}

fn uxt(transfer: Transfer) -> Extrinsic {
Extrinsic::Transfer(transfer, Default::default())
Extrinsic::Transfer {
transfer,
signature: Default::default(),
exhaust_resources: false,
}
}

fn pool() -> Pool<TestApi> {
Expand Down