MCPcopy Create free account
hub / github.com/LUX-Core/lux / HasCreateOrCall

Method HasCreateOrCall

src/primitives/transaction.cpp:210–217  ·  view source on GitHub ↗

//////////////////////////////////////////////////////// lux

Source from the content-addressed store, hash-verified

208
209///////////////////////////////////////////////////////////// lux
210bool CTransaction::HasCreateOrCall() const{
211 for(const CTxOut& v : vout){
212 if(v.scriptPubKey.HasOpCreate() || v.scriptPubKey.HasOpCall()){
213 return true;
214 }
215 }
216 return false;
217}
218
219
220

Callers 8

operator()Method · 0.80
addPackageTxsMethod · 0.80
addPriorityTxsMethod · 0.80
operator()Method · 0.80
AcceptToMemoryPoolFunction · 0.80
AcceptableInputsFunction · 0.80
ConnectBlockFunction · 0.80
CheckBlockFunction · 0.80

Calls 2

HasOpCreateMethod · 0.80
HasOpCallMethod · 0.80

Tested by

no test coverage detected