Type Alias hrmp_cancel_open_request

hrmp_cancel_open_request: TxDescriptor<{
    channel_id: {
        recipient: number;
        sender: number;
    };
    open_requests: number;
}>

This cancels a pending open channel request. It can be canceled by either of the sender or the recipient for that request. The origin must be either of those.

The cancellation happens immediately. It is not possible to cancel the request if it is already accepted.

Total number of open requests (i.e. HrmpOpenChannelRequestsList) must be provided as witness data.