Skip to content

Commit

Permalink
scenario: support signet in recon
Browse files Browse the repository at this point in the history
  • Loading branch information
pinheadmz committed Sep 10, 2024
1 parent eb5cc36 commit fc48043
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion resources/scenarios/reconnaissance.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ def run_test(self):
dstaddr, dstport = victim["addr"].split(":")
else:
dstaddr = socket.gethostbyname(victim["addr"])
dstport = 18444
if self.chain == "regtest":
dstport = 18444
if self.chain == "signet":
dstport = 38333

# Now we will use a python-based Bitcoin p2p node to send very specific,
# unusual or non-standard messages to a "victim" node.
Expand Down

0 comments on commit fc48043

Please sign in to comment.