(amount int64, assetID, anchor []byte)
| 53 | } |
| 54 | |
| 55 | func (vm *VM) logRetirement(amount int64, assetID, anchor []byte) { |
| 56 | vm.log(Bytes{RetireCode}, Bytes(vm.contract.seed), Int(amount), Bytes(assetID), Bytes(anchor)) |
| 57 | } |
| 58 | |
| 59 | func (vm *VM) logIssuance(amount int64, assetID, anchor []byte) { |
| 60 | vm.log(Bytes{IssueCode}, Bytes(vm.caller), Int(amount), Bytes(assetID), Bytes(anchor)) |