Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐞 fix: Invalid default parameter provided for node setup #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions setup_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,13 @@ def main():
parser.add_argument('--client', type=str, help='Client that we want to spin up.', default="nethermind")
parser.add_argument('--image', type=str, help='Docker image of the client we are going to use.')
parser.add_argument('--imageBulk', type=str, help='Docker image of the client we are going to use.',
default='{"nethermind": "default", "besu": "default", "geth": "default", "reth": "default"}, '
'"erigon": "default"}')
default='''{
"nethermind": "default",
"besu": "default",
"geth": "default",
"reth": "default",
"erigon": "default"
}''')

# Parse command-line arguments
args = parser.parse_args()
Expand Down