aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index bf6c5a2a87..d93830f085 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -114,12 +114,17 @@ public:
READWRITE(nVersion);
READWRITE(nTime);
READWRITE(vchPubKey);
- if (nVersion >= FEATURE_HD_SPLIT)
- READWRITE(fInternal);
- else
- {
- if (ser_action.ForRead())
+ if (ser_action.ForRead()) {
+ try {
+ READWRITE(fInternal);
+ }
+ catch (...) {
+ /* flag as external address if we can't read the internal boolean */
fInternal = false;
+ }
+ }
+ else {
+ READWRITE(fInternal);
}
}
};