mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Make iterators in CScript::FindAndDelete const
This commit is contained in:
parent
e625548e7c
commit
2fb168b55d
@ -594,12 +594,12 @@ public:
|
||||
if (b.empty())
|
||||
return nFound;
|
||||
CScript result;
|
||||
iterator pc = begin(), pc2 = begin();
|
||||
const_iterator pc = begin(), pc2 = begin(), end = this->end();
|
||||
opcodetype opcode;
|
||||
do
|
||||
{
|
||||
result.insert(result.end(), pc2, pc);
|
||||
while (static_cast<size_t>(end() - pc) >= b.size() && std::equal(b.begin(), b.end(), pc))
|
||||
while (static_cast<size_t>(end - pc) >= b.size() && std::equal(b.begin(), b.end(), pc))
|
||||
{
|
||||
pc = pc + b.size();
|
||||
++nFound;
|
||||
@ -609,7 +609,7 @@ public:
|
||||
while (GetOp(pc, opcode));
|
||||
|
||||
if (nFound > 0) {
|
||||
result.insert(result.end(), pc2, end());
|
||||
result.insert(result.end(), pc2, end);
|
||||
*this = result;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user