Skip to content

Commit

Permalink
fix bug in supplying args to test_genesis_validators()
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone authored and tzemanovic committed Aug 5, 2022
1 parent 4644fcd commit 7f6e774
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/src/e2e/ledger_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,8 @@ fn test_genesis_validators() -> Result<()> {
"--unsafe-dont-encrypt",
"--alias",
validator_0_alias,
"--scheme ed25519",
"--scheme",
"ed25519",
"--net-address",
&format!("127.0.0.1:{}", get_first_port(0)),
],
Expand Down Expand Up @@ -1590,7 +1591,8 @@ fn test_genesis_validators() -> Result<()> {
"--unsafe-dont-encrypt",
"--alias",
validator_1_alias,
"--scheme secp256k1",
"--scheme",
"secp256k1",
"--net-address",
&format!("127.0.0.1:{}", get_first_port(1)),
],
Expand Down

0 comments on commit 7f6e774

Please sign in to comment.