useMaxAmount property

  1. @TagNumber(5)
bool get useMaxAmount

Request max amount option. If set, tx will send all possible amounts from all inputs, including all tokens; there will be no change; requested amount and token_amount is disregarded in this case.

Implementation

@$pb.TagNumber(5)
$core.bool get useMaxAmount => $_getBF(4);
  1. @TagNumber(5)
set useMaxAmount (bool v)

Implementation

@$pb.TagNumber(5)
set useMaxAmount($core.bool v) {
  $_setBool(4, v);
}