(args [][]byte)
| 81 | } |
| 82 | |
| 83 | func (t *TxInput) SetArguments(args [][]byte) { |
| 84 | switch inp := t.TypedInput.(type) { |
| 85 | case *IssuanceInput: |
| 86 | inp.Arguments = args |
| 87 | case *SpendInput: |
| 88 | inp.Arguments = args |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | func (t *TxInput) readFrom(r *blockchain.Reader) (err error) { |
| 93 | t.AssetVersion, err = blockchain.ReadVarint63(r) |
no outgoing calls