PushI represents the PUSH_I virtual machine opcode.
| 115 | |
| 116 | // PushI represents the PUSH_I virtual machine opcode. |
| 117 | type PushI struct { |
| 118 | DataType protocol.Type // The value type to push. |
| 119 | Value uint32 // The value to push packed into the low 20 bits. |
| 120 | } |
| 121 | |
| 122 | func (c PushI) String() string { |
| 123 | return fmt.Sprintf("PushI(Type: %v, Address: 0x%x)", c.DataType, int(c.Value)) |
nothing calls this directly
no outgoing calls
no test coverage detected