MCPcopy Create free account
hub / github.com/bitcoinxt/bitcoinxt / GetOp

Method GetOp

src/script/script.h:463–470  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

461
462
463 bool GetOp(iterator& pc, opcodetype& opcodeRet, std::vector<unsigned char>& vchRet)
464 {
465 // Wrapper so it can be called with either iterator or const_iterator
466 const_iterator pc2 = pc;
467 bool fRet = GetOp2(pc2, opcodeRet, &vchRet);
468 pc = begin() + (pc2 - begin());
469 return fRet;
470 }
471
472 bool GetOp(iterator& pc, opcodetype& opcodeRet)
473 {

Callers 7

ScriptToAsmStrFunction · 0.80
IsRelevantAndUpdateMethod · 0.80
BOOST_FOREACHFunction · 0.80
GetSigOpCountMethod · 0.80
EvalScriptFunction · 0.80
SerializeScriptCodeMethod · 0.80
BOOST_FOREACHFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected