depositAmount property

  1. @TagNumber.new(2)
Int64 get depositAmount

Amount deposited in this TX. Should be 2 ADA (2000000). If not set correctly, TX will be rejected. See also Delegate.deposit_amount.

Implementation

@$pb.TagNumber(2)
$fixnum.Int64 get depositAmount => $_getI64(1);
  1. @TagNumber.new(2)
set depositAmount (Int64 v)

Implementation

@$pb.TagNumber(2)
set depositAmount($fixnum.Int64 v) {
  $_setInt64(1, v);
}