availableAmount property

  1. @TagNumber(5)
Int64 get availableAmount

Maximum available amount in all the transaction input UTXOs. That is an amount that will be spent by this transaction.

Implementation

@$pb.TagNumber(5)
$fixnum.Int64 get availableAmount => $_getI64(4);
  1. @TagNumber(5)
set availableAmount (Int64 v)

Implementation

@$pb.TagNumber(5)
set availableAmount($fixnum.Int64 v) {
  $_setInt64(4, v);
}