Skip to content

Commit 31ec815

Browse files
committed
f vec!
1 parent 1a30e01 commit 31ec815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests_rust.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ fn onchain_wallet_recovery() {
323323

324324
let chain_source = TestChainSource::Esplora(&electrsd);
325325

326-
let seed_bytes: Vec<u8> = std::iter::repeat(42u8).take(64).collect();
326+
let seed_bytes = vec![42u8; 64];
327327

328328
let original_config = random_config(true);
329329
let original_node = setup_node(&chain_source, original_config, Some(seed_bytes.clone()));

0 commit comments

Comments
 (0)