Skip to content

Commit

Permalink
hlint
Browse files Browse the repository at this point in the history
  • Loading branch information
paweljakubas committed Jul 14, 2023
1 parent c513f3c commit b203b2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ spec = describe "BYRON_TRANSACTIONS" $ do

let walType = getFromResponse #discovery ra
-- needs to be >= 2^31
let addrIx' = 2147483648 + addrIx
let addrIx' = 2_147_483_648 + addrIx

case walType of
DiscoveryRandom -> do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2631,7 +2631,7 @@ spec = describe "SHARED_TRANSACTIONS" $ do
expectResponseCode HTTP.status200 rAddr
let addrs = getFromResponse Prelude.id rAddr

let addr0 = (addrs !! 0) ^. #id
let addr0 = (head addrs) ^. #id
let linkList0 = Link.listTransactions' @'Shared wDest
Nothing
Nothing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4193,7 +4193,7 @@ spec = describe "NEW_SHELLEY_TRANSACTIONS" $ do

addrs <- listAddresses @n ctx wDest

let addr0 = (addrs !! 0) ^. #id
let addr0 = (head addrs) ^. #id
let linkList0 = Link.listTransactions' @'Shelley wDest
Nothing
Nothing
Expand Down

0 comments on commit b203b2c

Please sign in to comment.