vsizeEstimate property

  1. @TagNumber(7)
Int64 get vsizeEstimate

The estimated 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(7)
$fixnum.Int64 get vsizeEstimate => $_getI64(6);
  1. @TagNumber(7)
set vsizeEstimate (Int64 v)

Implementation

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