weight property

  1. @TagNumber.new(7)
Int64 get weight

Transaction weight is defined as Base transaction size * 3 + Total transaction size (ie. the same method as calculating Block weight from Base size and Total size).

Implementation

@$pb.TagNumber(7)
$fixnum.Int64 get weight => $_getI64(5);
  1. @TagNumber.new(7)
set weight (Int64 v)

Implementation

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