Skip to content

Commit

Permalink
f vec!
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Nov 4, 2024
1 parent 029e86a commit 38c60de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration_tests_rust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ fn onchain_wallet_recovery() {

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

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

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

0 comments on commit 38c60de

Please sign in to comment.