MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / getint

Method getint

src/script/script.h:305–312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

303 }
304
305 int getint() const
306 {
307 if (m_value > std::numeric_limits<int>::max())
308 return std::numeric_limits<int>::max();
309 else if (m_value < std::numeric_limits<int>::min())
310 return std::numeric_limits<int>::min();
311 return m_value;
312 }
313
314 std::vector<unsigned char> getvch() const
315 {

Callers 2

ScriptToAsmStrFunction · 0.45
EvalScriptFunction · 0.45

Calls 1

maxFunction · 0.85

Tested by

no test coverage detected