changeOutput property

  1. @TagNumber(7)
Output get changeOutput

(optional) The change output to be added (return to sender) at the end of the outputs list. The Output.value will be overwritten, leave default. Note there can be no change output if the change amount is less than dust threshold. Leave empty to explicitly disable change output creation.

Implementation

@$pb.TagNumber(7)
Output get changeOutput => $_getN(6);
  1. @TagNumber(7)
set changeOutput (Output v)

Implementation

@$pb.TagNumber(7)
set changeOutput(Output v) {
  setField(7, v);
}