Skip to content

Commit 3f345f4

Browse files
Fix build problems and CI workflow (#151)
1 parent 505698d commit 3f345f4

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
- uses: actions/checkout@v2
2121

2222
- name: Setup latest stack
23-
uses: haskell/actions/setup@v2
23+
uses: haskell-actions/setup@v2
2424
with:
2525
enable-stack: true
2626
stack-version: 'latest'
2727

2828
- name: Cache .stack-root
29-
uses: actions/cache@v1
29+
uses: actions/cache@v4
3030
env:
3131
cache-name: stack-root
3232
with:

packages/ethereum/src/Network/Ethereum/Api/Eth.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import Network.Ethereum.Api.Types
2424
, Call
2525
, Change
2626
, DefaultBlock
27+
, FeeHistory
2728
, Filter
2829
, Quantity
2930
, SyncingState

packages/ethereum/src/Network/Ethereum/Api/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ data BlockT tx = Block
351351
$(deriveJSON (defaultOptions
352352
{ fieldLabelModifier = over _head toLower . drop 5 }) ''BlockT)
353353

354-
--| Fee History information
354+
-- | Fee History information
355355
data FeeHistory
356356
= FeeHistory
357357
{ feeHistoryBaseFeePerBlobGas :: [Quantity]

stack.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,8 @@ nix:
2929
- haskellPackages.stylish-haskell
3030
- haskellPackages.hlint
3131
- zlib
32+
33+
flags:
34+
# bitvec C FFI causes unkown symbol error in windows build, disabling it
35+
bitvec:
36+
simd: false

0 commit comments

Comments
 (0)