diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2017-03-28 09:18:20 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2017-03-28 09:18:20 +0200 |
commit | 4115af7ac78971617c4fb80b7db336ff6bf254db (patch) | |
tree | dd48e792fae1466201f15bea038bb720437a6a1e /src/wallet/walletdb.h | |
parent | 9382f0425e87b30e4621e0e23a99d6e880ec2200 (diff) |
Fix rebase issue where pwalletMain was used instead of pwallet
Ser./Deser. nInternalChainCounter as last element
Diffstat (limited to 'src/wallet/walletdb.h')
-rw-r--r-- | src/wallet/walletdb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h index 016296f259..271c1d66c9 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -61,9 +61,9 @@ public: { READWRITE(this->nVersion); READWRITE(nExternalChainCounter); + READWRITE(masterKeyID); if (this->nVersion >= VERSION_HD_CHAIN_SPLIT) READWRITE(nInternalChainCounter); - READWRITE(masterKeyID); } void SetNull() |