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

Function PrefixStream

src/wallet/walletdb.cpp:742–747  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

740
741template<typename... Args>
742static DataStream PrefixStream(const Args&... args)
743{
744 DataStream prefix;
745 SerializeMany(prefix, args...);
746 return prefix;
747}
748
749static DBErrors LoadDescriptorWalletRecords(CWallet* pwallet, DatabaseBatch& batch, int last_client) EXCLUSIVE_LOCKS_REQUIRED(pwallet->cs_wallet)
750{

Callers 1

walletdb.cppFile · 0.85

Calls 1

SerializeManyFunction · 0.85

Tested by

no test coverage detected