Skip to main content

HydraDecommitInvalidMessage

export type HydraDecommitInvalidMessage = {
  decommitInvalidReason: {
    localUtxo: Record<string, HydraTxOutput>
    tag: "DecommitTxInvalid"
    validationError: {reason: string}
  } | {
    otherDecommitTxId: string
    tag: "DecommitAlreadyInFlight"
  }
  decommitTx: HydraTx
  headId: string
  tag: "DecommitInvalid"
}