File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
decentralized-message-queue/src/DMQ/Protocol/LocalMsgSubmission Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ decodeReject = do
3939 len <- CBOR. decodeListLen
4040 tag <- CBOR. decodeWord
4141 case (tag, len) of
42- (0 , 2 ) -> SigInvalid <$> CBOR. decodeString
43- (1 , 1 ) -> pure SigDuplicate
44- (2 , 1 ) -> pure SigExpired
45- (3 , 2 ) -> SigResultOther <$> CBOR. decodeString
42+ (0 , 2 ) -> SigInvalid <$> CBOR. decodeString
43+ (1 , 1 ) -> pure SigDuplicate
44+ (2 , 1 ) -> pure SigExpired
45+ (3 , 2 ) -> SigResultOther <$> CBOR. decodeString
4646 _otherwise -> fail $ printf " unrecognized (tag,len) = (%d, %d)" tag len
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ module DMQ.Protocol.LocalMsgSubmission.Type
1212 , module Ouroboros
1313 ) where
1414
15- import Data.Typeable
1615import Data.Text (Text )
1716import Network.TypedProtocol.Core as Core
1817import Ouroboros.Network.Protocol.LocalTxSubmission.Type as Ouroboros
You can’t perform that action at this time.
0 commit comments