Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dangell7 committed Jul 4, 2024
1 parent eb1d128 commit ec25d68
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions tests/integration/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


class TestINetGenXahau(BaseTestConfig):
def test_create_xahau_network(cls):
def _test_create_xahau_network(cls):
create_network(
"trace",
"ED74D4036C6591A4BDF9C54CEFA39B996A5DCE5F86D11FDA1874481CE9D5A1CDC1",
Expand All @@ -27,21 +27,21 @@ def test_create_xahau_network(cls):
2, # num peers
21336, # network id
"https://build.xahau.tech", # image host
"2024.4.21-release+858", # image name
False,
"2024.6.3-jshooks+903", # image name
True,
3,
)

def _test_create_ansible(cls):
def test_create_ansible(cls):
create_ansible(
"trace",
"ED74D4036C6591A4BDF9C54CEFA39B996A5DCE5F86D11FDA1874481CE9D5A1CDC1",
"xahau", # protocol
6, # num validators
2, # num peers
21336, # network id
21339, # network id
"https://build.xahau.tech", # image host
"2024.5.13-HEAD+864", # image name
"2024.6.3-jshooks+903", # image name
True,
3,
[
Expand Down
4 changes: 2 additions & 2 deletions xrpld_netgen/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ def main():
print(f"{bcolors.BLUE}Starting Network: {NAME}{bcolors.END}")
return run_start(
[f"{basedir}/{NAME}/start.sh"],
PROTOCOL,
BUILD_VERSION,
None,
None,
"network",
)

Expand Down

0 comments on commit ec25d68

Please sign in to comment.