File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -493,23 +493,6 @@ class CScript : public CScriptBase
493
493
}
494
494
495
495
496
- bool GetOp (iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char >& vchRet)
497
- {
498
- // Wrapper so it can be called with either iterator or const_iterator
499
- const_iterator pc2 = pc;
500
- bool fRet = GetOp2 (pc2, opcodeRet, &vchRet);
501
- pc = begin () + (pc2 - begin ());
502
- return fRet ;
503
- }
504
-
505
- bool GetOp (iterator& pc, opcodetype& opcodeRet)
506
- {
507
- const_iterator pc2 = pc;
508
- bool fRet = GetOp2 (pc2, opcodeRet, nullptr );
509
- pc = begin () + (pc2 - begin ());
510
- return fRet ;
511
- }
512
-
513
496
bool GetOp (const_iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char >& vchRet) const
514
497
{
515
498
return GetOp2 (pc, opcodeRet, &vchRet);
You can’t perform that action at this time.
0 commit comments