Skip to content

Commit

Permalink
fix(network): fix secret key length in test util
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-starkware committed Nov 4, 2024
1 parent f9843c4 commit 5efdb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/papyrus_network/src/network_manager/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ where

let [channels_port, config_port] = find_n_free_ports::<2>();

let channels_secret_key = [1u8; 64];
let channels_secret_key = [1u8; 32];
let channels_public_key = Keypair::ed25519_from_bytes(channels_secret_key).unwrap().public();

let channels_config = NetworkConfig {
Expand Down

0 comments on commit 5efdb37

Please sign in to comment.