File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed
Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -224,18 +224,6 @@ bool CWalletDB::EraseWatchOnly(const CScript& dest)
224224 return batch.Erase (std::make_pair (std::string (DBKeys::WATCHS), dest));
225225}
226226
227- bool CWalletDB::WriteMultiSig (const CScript& dest)
228- {
229- nWalletDBUpdateCounter++;
230- return batch.Write (std::make_pair (std::string (" multisig" ), dest), ' 1' );
231- }
232-
233- bool CWalletDB::EraseMultiSig (const CScript& dest)
234- {
235- nWalletDBUpdateCounter++;
236- return batch.Erase (std::make_pair (std::string (" multisig" ), dest));
237- }
238-
239227bool CWalletDB::WriteBestBlock (const CBlockLocator& locator)
240228{
241229 nWalletDBUpdateCounter++;
Original file line number Diff line number Diff line change @@ -138,9 +138,6 @@ class CWalletDB
138138 bool WriteWatchOnly (const CScript& script);
139139 bool EraseWatchOnly (const CScript& script);
140140
141- bool WriteMultiSig (const CScript& script);
142- bool EraseMultiSig (const CScript& script);
143-
144141 bool WriteBestBlock (const CBlockLocator& locator);
145142 bool ReadBestBlock (CBlockLocator& locator);
146143
You can’t perform that action at this time.
0 commit comments