diff options
| author | John Newbery <[email protected]> | 2018-04-04 11:43:45 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2018-05-19 11:16:00 -0400 |
| commit | 131d4450b913fa4f00dc8b176dc996d39f786c19 (patch) | |
| tree | 5c34c2418b2b92e1804fb70dd78ff4c1fc624da3 /test/functional/wallet_dump.py | |
| parent | Merge #13228: Add script to detect circular dependencies between source modules (diff) | |
| download | discoin-131d4450b913fa4f00dc8b176dc996d39f786c19.tar.xz discoin-131d4450b913fa4f00dc8b176dc996d39f786c19.zip | |
scripted-diff: Rename master key to seed
-BEGIN VERIFY SCRIPT-
ren() { git grep -l "\<$1\>" 'src/*.cpp' 'src/*.h' test | xargs sed -i "s:\<$1\>:$2:g"; }
ren GenerateNewHDMasterKey GenerateNewSeed
ren DeriveNewMasterHDKey DeriveNewSeed
ren SetHDMasterKey SetHDSeed
ren hdMasterKeyID hd_seed_id
ren masterKeyID seed_id
ren SetMaster SetSeed
ren hdmasterkeyid hdseedid
ren hdmaster hdseed
-END VERIFY SCRIPT-
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 01d27dabe..6c2590812 100755 --- a/test/functional/wallet_dump.py +++ b/test/functional/wallet_dump.py @@ -39,7 +39,7 @@ def read_dump(file_name, addrs, script_addrs, hd_master_addr_old): if keytype == "inactivehdmaster=1": # ensure the old master is still available assert(hd_master_addr_old == addr) - elif keytype == "hdmaster=1": + elif keytype == "hdseed=1": # ensure we have generated a new hd master key assert(hd_master_addr_old != addr) hd_master_addr_ret = addr |