Skip to content

Commit

Permalink
Use different port for every version compatibility test
Browse files Browse the repository at this point in the history
  • Loading branch information
rafal-ch committed Oct 5, 2024
1 parent 1ec05a9 commit f13e7ec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async fn latest_binary_is_backward_compatible_and_follows_blocks_created_by_v36_
// Given
let v36_keypair = SecpKeypair::generate();
let hexed_secret = hex::encode(v36_keypair.secret().to_bytes());
let v36_port = "30333";
let v36_port = "30334";
let v36_node = Version36FuelCoreDriver::spawn(&[
"--service-name",
"V36Producer",
Expand Down Expand Up @@ -195,7 +195,7 @@ async fn latest_binary_is_backward_compatible_and_can_deserialize_errors_from_ge
// Given
let genesis_keypair = SecpKeypair::generate();
let hexed_secret = hex::encode(genesis_keypair.secret().to_bytes());
let genesis_port = "30333";
let genesis_port = "30335";
let node_with_genesis_transition = LatestFuelCoreDriver::spawn(&[
"--service-name",
"GenesisProducer",
Expand Down

0 comments on commit f13e7ec

Please sign in to comment.