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:
JoelKatz
2014-01-06 23:47:24 -08:00
committed by Vinnie Falco
parent e3a67b13ff
commit e25a83bb39
7 changed files with 14 additions and 10 deletions

View File

@@ -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;
}
}