Use RippleMutex instead of boost::mutex

This commit is contained in:
Vinnie Falco
2013-08-22 21:31:22 -07:00
parent c21a53a3ea
commit f14333012b
79 changed files with 798 additions and 721 deletions

View File

@@ -64,7 +64,7 @@ public:
pObject->reset ();
{
ScopedLock sl (m_db->getDBLock());
DeprecatedScopedLock sl (m_db->getDBLock());
uint256 const hash (uint256::fromVoid (key));
@@ -108,7 +108,7 @@ public:
{
// VFALCO TODO Rewrite this to use Beast::db
ScopedLock sl (m_db->getDBLock());
DeprecatedScopedLock sl (m_db->getDBLock());
static SqliteStatement pStB (m_db->getDB()->getSqliteDB(), "BEGIN TRANSACTION;");
static SqliteStatement pStE (m_db->getDB()->getSqliteDB(), "END TRANSACTION;");