mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Some tiny bugfixes:
* Don't let ledger idle interval get too short * Fix CBigNum::setuint256 * Fix SqliteStatement::isError * Remove dead code, fix incorrect comments * Check for NULL earlier in CKey constructors * Prevent expire times from underflowing in TaggedCache
This commit is contained in:
@@ -471,10 +471,10 @@ bool SqliteStatement::isError (int j)
|
||||
case SQLITE_OK:
|
||||
case SQLITE_ROW:
|
||||
case SQLITE_DONE:
|
||||
return true;
|
||||
return false;
|
||||
|
||||
default:
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user