refactor: Drop no longer used swap member functions

This commit is contained in:
Hennadii Stepanov
2023-03-21 13:04:53 +00:00
parent a87fb6bee5
commit cea50521fe
2 changed files with 0 additions and 29 deletions

View File

@@ -328,17 +328,6 @@ public:
bool operator()();
void swap(CScriptCheck& check) noexcept
{
std::swap(ptxTo, check.ptxTo);
std::swap(m_tx_out, check.m_tx_out);
std::swap(nIn, check.nIn);
std::swap(nFlags, check.nFlags);
std::swap(cacheStore, check.cacheStore);
std::swap(error, check.error);
std::swap(txdata, check.txdata);
}
ScriptError GetScriptError() const { return error; }
};