diff options
| author | Karl-Johan Alm <[email protected]> | 2019-08-06 00:01:54 +0900 |
|---|---|---|
| committer | Karl-Johan Alm <[email protected]> | 2020-09-18 10:19:43 +0900 |
| commit | e47ad375bf17557f805bd206e789b8db78c6338a (patch) | |
| tree | 882307bc4f62f5a3377a0643f7539d63b00348b9 /test/functional/test_framework | |
| parent | test: add small signet fuzzer (diff) | |
| download | discoin-e47ad375bf17557f805bd206e789b8db78c6338a.tar.xz discoin-e47ad375bf17557f805bd206e789b8db78c6338a.zip | |
test: basic signet tests
Diffstat (limited to 'test/functional/test_framework')
| -rwxr-xr-x | test/functional/test_framework/p2p.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/p2p.py b/test/functional/test_framework/p2p.py index 57c77e60b..cf97e1e2e 100755 --- a/test/functional/test_framework/p2p.py +++ b/test/functional/test_framework/p2p.py @@ -109,6 +109,7 @@ MAGIC_BYTES = { "mainnet": b"\xf9\xbe\xb4\xd9", # mainnet "testnet3": b"\x0b\x11\x09\x07", # testnet3 "regtest": b"\xfa\xbf\xb5\xda", # regtest + "signet": b"\x0a\x03\xcf\x40", # signet } |