Merge pull request #4618
eb0b56b Simplify serialize.h's exception handling (Pieter Wuille)
This commit is contained in:
@@ -83,7 +83,7 @@ struct ReadAlerts
|
||||
std::vector<unsigned char> vch(alert_tests::alertTests, alert_tests::alertTests + sizeof(alert_tests::alertTests));
|
||||
CDataStream stream(vch, SER_DISK, CLIENT_VERSION);
|
||||
try {
|
||||
while (stream.good())
|
||||
while (!stream.eof())
|
||||
{
|
||||
CAlert alert;
|
||||
stream >> alert;
|
||||
|
||||
Reference in New Issue
Block a user