(amount int64, assetID, anchor []byte)
| 78 | } |
| 79 | |
| 80 | func (vm *VM) createValue(amount int64, assetID, anchor []byte) *value { |
| 81 | vm.charge(128) |
| 82 | return &value{ |
| 83 | amount: amount, |
| 84 | assetID: assetID, |
| 85 | anchor: anchor, |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | type contract struct { |
| 90 | typecode byte |