MCPcopy Create free account
hub / github.com/ElementsProject/elements / pop_back

Method pop_back

src/script/interpreter.cpp:415–423  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

413 ++m_stack_size;
414 }
415 void pop_back()
416 {
417 assert(m_stack_size > 0);
418 --m_stack_size;
419 if (m_first_false_pos == m_stack_size) {
420 // When popping off the first false value, everything becomes true.
421 m_first_false_pos = NO_FALSE;
422 }
423 }
424 void toggle_top()
425 {
426 assert(m_stack_size > 0);

Callers 15

sanity_test_listFunction · 0.45
SelectCoinsBnBFunction · 0.45
UnloadWalletsFunction · 0.45
FUZZ_TARGET_INITFunction · 0.45
ParsePubkeyInnerFunction · 0.45
ParseScriptFunction · 0.45
popstackFunction · 0.45
EvalScriptFunction · 0.45
CheckECDSASignatureMethod · 0.45
InsertMethod · 0.45
ValidDepthsMethod · 0.45

Calls

no outgoing calls

Tested by 1

FUZZ_TARGET_INITFunction · 0.36