vsize property
- @TagNumber.new(6)
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);
- @TagNumber.new(6)
Implementation
@$pb.TagNumber(6)
set vsize($fixnum.Int64 v) {
$_setInt64(4, v);
}