mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-08 06:22:39 -04:00
test: fix issue with rand in proptest
This commit is contained in:
parent
25c812e9fd
commit
c0337a0c6f
1 changed files with 1 additions and 1 deletions
|
@ -1076,7 +1076,7 @@ mod tests {
|
||||||
proptest! {
|
proptest! {
|
||||||
#[test]
|
#[test]
|
||||||
fn given_fee_above_max_should_always_errors(
|
fn given_fee_above_max_should_always_errors(
|
||||||
sat_per_vb in 100_000_000.0f32..,
|
sat_per_vb in 100_000_000.0f32..f32::MAX,
|
||||||
) {
|
) {
|
||||||
let weight = 400;
|
let weight = 400;
|
||||||
let amount = bitcoin::Amount::from_sat(547u64);
|
let amount = bitcoin::Amount::from_sat(547u64);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue