Skip to content

Commit d9e13ce

Browse files
committed
Fix build after merge with master
1 parent c3dbcdd commit d9e13ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wallet/src/account/output_cache/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,7 @@ fn update_conflicting_txs_order_v1_conclude(#[case] seed: Seed) {
13221322
.add_input(
13231323
TxInput::OrderAccountCommand(OrderAccountCommand::FillOrder(
13241324
order_id,
1325-
Amount::from_atoms(rng.gen_range(100..200)),
1325+
Amount::from_atoms(rng.random_range(100..200)),
13261326
)),
13271327
InputWitness::NoSignature(None),
13281328
)
@@ -1500,7 +1500,7 @@ fn update_conflicting_txs_order_v1_freeze(#[case] seed: Seed) {
15001500
.add_input(
15011501
TxInput::OrderAccountCommand(OrderAccountCommand::FillOrder(
15021502
order_id,
1503-
Amount::from_atoms(rng.gen_range(100..200)),
1503+
Amount::from_atoms(rng.random_range(100..200)),
15041504
)),
15051505
InputWitness::NoSignature(None),
15061506
)

0 commit comments

Comments
 (0)