Skip to content

Commit

Permalink
Change virtual nodes ports
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatcam committed Jan 3, 2024
1 parent f328be4 commit 5c4bd4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/overlay/ProtocolStart_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,24 +222,24 @@ class ProtocolStart_test : public beast::unit_test::suite
// both peers have the latest protocol: supported - supported,
// negotiate supported
doTest(
8000,
9000,
10000,
supportedProtocols,
supportedProtocols,
negotiateProtocol(supportedProtocols, supportedProtocols),
true);
// inbound peer has 2.2 and outbound peer has the latest, negotiate 2.2
doTest(
8100,
9100,
10100,
oldProtocols,
supportedProtocols,
negotiateProtocol(oldProtocols, supportedProtocols),
false);
// outbound peer has the latest and inbound peer has 2.2, negotiate 2.2
doTest(
8200,
9200,
10200,
supportedProtocols,
oldProtocols,
negotiateProtocol(supportedProtocols, oldProtocols),
Expand Down

0 comments on commit 5c4bd4e

Please sign in to comment.