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