vsize property

  1. @TagNumber.new(6)
Int64 get vsize

The total vsize in vbytes. It is used to compare how much blockweight needs to be allocated to confirm a transaction. For non-segwit transactions, vsize = size.

Implementation

@$pb.TagNumber(6)
$fixnum.Int64 get vsize => $_getI64(4);
  1. @TagNumber.new(6)
set vsize (Int64 v)

Implementation

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