calculateTotalInput method

int? calculateTotalInput()

Calculate total input value (returns null if any input references unknown outputs)

Implementation

int? calculateTotalInput() {
  if (isCoinbase) return null;

  // In a real implementation, this would look up previous outputs
  // For now, return null to indicate we need external UTXO data
  return null;
}