diff options
| author | Ross Nicoll <[email protected]> | 2021-03-04 10:25:29 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-04 11:25:29 +0100 |
| commit | 8b0dcb523dcda768988f0ed661a70611c3d727b3 (patch) | |
| tree | 92310d01b30ad232f41801c529ab865fcccd07d7 /test/functional/wallet_dump.py | |
| parent | Disable compatibility tests (#1754) (diff) | |
| download | discoin-8b0dcb523dcda768988f0ed661a70611c3d727b3.tar.xz discoin-8b0dcb523dcda768988f0ed661a70611c3d727b3.zip | |
1.21 key prefix (#1710)
Squash-merged on request.
* Dogecoin address prefixes
* Use "doge" for BECH32 addresses
* Switch Bitcoin references to Dogecoin in Travis
* Update addresses in dogecoin-tx tests
* Use "doge" for BECH32 addresses
* Remove functional tests which do not apply to Dogecoin (backwards compatibility tests do not have suitable clients to test against)
Diffstat (limited to 'test/functional/wallet_dump.py')
| -rwxr-xr-x | test/functional/wallet_dump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_dump.py b/test/functional/wallet_dump.py index eb54da99f..e210f4d66 100755 --- a/test/functional/wallet_dump.py +++ b/test/functional/wallet_dump.py @@ -73,7 +73,7 @@ def read_dump(file_name, addrs, script_addrs, hd_master_addr_old): elif addr.startswith('2'): # P2SH-segwit address found_p2sh_segwit_addr += 1 - elif addr.startswith('bcrt1'): + elif addr.startswith('dcrt1'): found_bech32_addr += 1 break elif keytype == "change=1": |