Skip to content

Commit

Permalink
replace goomy with spamoor
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Dec 16, 2024
1 parent e60afbe commit 2acdee5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -686,12 +686,12 @@ tx_spammer_params:
# A list of optional extra params that will be passed to the TX Spammer container for modifying its behaviour
tx_spammer_extra_args: []

# Configuration place for goomy the blob spammer - https://github.com/ethpandaops/goomy-blob
# Configuration place for spammor as blob spammer - https://github.com/ethpandaops/spamoor
goomy_blob_params:
# Goomy Blob docker image to use
# spamoor docker image to use
# Defaults to the latest
image: "ethpandaops/goomy-blob:latest"
# A list of optional params that will be passed to the blob-spammer comamnd for modifying its behaviour
image: "ethpandaops/spamoor:latest"
# A list of optional params that will be passed to the spamoor comamnd for modifying its behaviour
goomy_blob_args: []

# Configuration place for prometheus
Expand Down
4 changes: 2 additions & 2 deletions src/goomy_blob/goomy_blob.star
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ def get_config(

goomy_args = " ".join(goomy_blob_params.goomy_blob_args)
if goomy_args == "":
goomy_args = "combined -b 2 -t 2 --max-pending 3"
goomy_args = "blob-combined -b 2 -t 2 --max-pending 4 --max-wallets 100"
goomy_cli_args.append(goomy_args)

cmd = "./blob-spammer -p {0} {1}".format(
cmd = "./spamoor -p {0} {1}".format(
prefunded_addresses[4].private_key, " ".join(goomy_cli_args)
)

Expand Down
2 changes: 1 addition & 1 deletion src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ def get_default_tx_spammer_params():


def get_default_goomy_blob_params():
return {"image": "ethpandaops/goomy-blob:master", "goomy_blob_args": []}
return {"image": "ethpandaops/spamoor:latest", "goomy_blob_args": []}


def get_default_assertoor_params():
Expand Down

0 comments on commit 2acdee5

Please sign in to comment.