diff options
author | John Newbery <john@johnnewbery.com> | 2018-04-04 12:47:55 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-05-19 11:21:15 -0400 |
commit | c75c351419dac3dfe9578604ea5b2f7599452b4a (patch) | |
tree | 0da18b15841a1a88164f9801f91d3cc5a94b9fd2 /test/functional/wallet_dump.py | |
parent | 131d4450b913fa4f00dc8b176dc996d39f786c19 (diff) |
[refactor] manually change remaining instances of master key to seed.
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 6c2590812b..ba420ab2a6 100755 --- a/test/functional/wallet_dump.py +++ b/test/functional/wallet_dump.py @@ -36,7 +36,7 @@ def read_dump(file_name, addrs, script_addrs, hd_master_addr_old): addr_keypath = comment.split(" addr=")[1] addr = addr_keypath.split(" ")[0] keypath = None - if keytype == "inactivehdmaster=1": + if keytype == "inactivehdseed=1": # ensure the old master is still available assert(hd_master_addr_old == addr) elif keytype == "hdseed=1": |