MCPcopy Create free account
hub / github.com/DNAProject/DNA / PushInt64

Method PushInt64

vm/neovm/value_stack_conversion.go:42–44  ·  view source on GitHub ↗
(val int64)

Source from the content-addressed store, hash-verified

40}
41
42func (self *ValueStack) PushInt64(val int64) error {
43 return self.Push(types.VmValueFromInt64(val))
44}
45
46func (self *ValueStack) PushUint64(val uint64) error {
47 return self.Push(types.VmValueFromUint64(val))

Callers 7

ExecuteOpMethod · 0.80
HeaderGetVersionFunction · 0.80
AttributeGetUsageFunction · 0.80
TransactionGetTypeFunction · 0.80
RuntimeGetTimeFunction · 0.80
RuntimeGetTriggerFunction · 0.80
TestVerifySigFunction · 0.80

Calls 2

PushMethod · 0.95
VmValueFromInt64Function · 0.92

Tested by 1

TestVerifySigFunction · 0.64