Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredCorduan committed Aug 2, 2019
1 parent 0924773 commit d3263ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shelley/chain-and-ledger/executable-spec/src/Updates.hs
Expand Up @@ -22,7 +22,7 @@ where
import Data.ByteString (ByteString)
import qualified Data.List as List (group)
import qualified Data.Map.Strict as Map
import qualified Data.Set as Set
import Data.Set (Set)
import Data.Word (Word8)

import Cardano.Binary (ToCBOR (toCBOR), encodeListLen)
Expand Down Expand Up @@ -144,7 +144,7 @@ instance ToCBOR Ppm where
encodeListLen 2 <> toCBOR (18 :: Word8) <> toCBOR protocolVersion

newtype PPUpdate dsignAlgo
= PPUpdate (Map.Map (VKeyGenesis dsignAlgo) (Set.Set Ppm))
= PPUpdate (Map.Map (VKeyGenesis dsignAlgo) (Set Ppm))
deriving (Show, Ord, Eq, ToCBOR)

-- | Update Protocol Parameter update with new values, prefer value from `pup1`
Expand Down

0 comments on commit d3263ef

Please sign in to comment.