allocationSize static method

int allocationSize(
  1. TxIn value
)

Implementation

static int allocationSize(TxIn value) {
  return FfiConverterOutPoint.allocationSize(value.previousOutput) +
      Script.allocationSize(value.scriptSig) +
      FfiConverterUInt32.allocationSize(value.sequence) +
      FfiConverterSequenceUint8List.allocationSize(value.witness) +
      0;
}