packages feed

bitcoin-payment-channel-1.0.0.0: src/PaymentChannel/Internal/Error/Server.hs

module PaymentChannel.Internal.Error.Server where

import Bitcoin.Types

data ReceiverError =
    SettleError BtcError


instance Show ReceiverError where
    show (SettleError e) =
        "Settlement error: " ++ show e