Skip to content

Commit

Permalink
Solve ping faucet issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rykcod authored Sep 9, 2022
1 parent bea75e7 commit 6411ddf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

## [DESCRIPTION] ##
### [FEATURES] ###
Build a massa-node container wich include some automation features
Build a massa-node container wich include some automation features from a community image with Massalabs agreements

This image include a script named "**/massa-guard/massa-guard.sh**" to:
- [AUTOBUY/AUTOSELL]
Expand Down
2 changes: 1 addition & 1 deletion sources/faucet_spammer.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async def on_ready(self):
address = ""
for line in output.decode("UTF-8").split("\n"):
if "Address" in line:
address = line.split(" ")[-1]
address = line.split(" ")[1]
break
if address :
faucet_channel = self.get_channel(FAUCET_CHANNEL_ID)
Expand Down

0 comments on commit 6411ddf

Please sign in to comment.