mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-30 18:51:15 +02:00
CKeyPool avoid "catch (...)" in SerializationOp
This commit is contained in:
@ -118,7 +118,7 @@ public:
|
|||||||
try {
|
try {
|
||||||
READWRITE(fInternal);
|
READWRITE(fInternal);
|
||||||
}
|
}
|
||||||
catch (...) {
|
catch (std::ios_base::failure&) {
|
||||||
/* flag as external address if we can't read the internal boolean */
|
/* flag as external address if we can't read the internal boolean */
|
||||||
fInternal = false;
|
fInternal = false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user