From c449d35dd20b1effa24a6f43cec6324174126084 Mon Sep 17 00:00:00 2001 From: yeastplume Date: Fri, 24 Aug 2018 15:51:13 +0100 Subject: [PATCH] tweak server test params --- servers/tests/simulnet.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/servers/tests/simulnet.rs b/servers/tests/simulnet.rs index 1f54969b7..1eba03439 100644 --- a/servers/tests/simulnet.rs +++ b/servers/tests/simulnet.rs @@ -440,15 +440,15 @@ fn replicate_tx_fluff_failure() { 2, // minimum confirmations "http://127.0.0.1:33001", // dest 500, // max outputs - 10, // num change outputs + 1000, // num change outputs true, // select all outputs ).unwrap(); - api.post_tx(&slate, true).unwrap(); + api.post_tx(&slate, false).unwrap(); Ok(()) }).unwrap(); // Give some time for propagation and mining - thread::sleep(time::Duration::from_secs(15)); + thread::sleep(time::Duration::from_secs(200)); // get another instance of wallet (to check contents) let wallet2 = create_wallet("target/tmp/tx_fluff/wallet2", client2.clone());