MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / MakeBatch

Method MakeBatch

src/wallet/sqlite.cpp:400–404  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398}
399
400std::unique_ptr<DatabaseBatch> SQLiteDatabase::MakeBatch()
401{
402 // We ignore flush_on_close because we don't do manual flushing for SQLite
403 return std::make_unique<SQLiteBatch>(*this);
404}
405
406SQLiteBatch::SQLiteBatch(SQLiteDatabase& database)
407 : m_database(database)

Callers 5

WalletBatchMethod · 0.45
MigrateToSQLiteMethod · 0.45
HasLegacyRecordsFunction · 0.45
DumpWalletFunction · 0.45
CreateFromDumpFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected