Skip to content

Commit 904b19a

Browse files
committed
UTXO-HD
1 parent e9e383a commit 904b19a

6 files changed

Lines changed: 290 additions & 94 deletions

File tree

.github/workflows/haskell.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,19 @@ jobs:
8080
with:
8181
use-sodium-vrf: true # default is true
8282

83+
- name: Linux install lmdb
84+
if: matrix.sys.os == 'ubuntu-latest'
85+
run: sudo apt install liblmdb-dev
86+
87+
- name: Mac install lmdb
88+
if: matrix.sys.os == 'macos-latest'
89+
run: brew install lmdb
90+
91+
- name: Windows install lmdb
92+
if: matrix.sys.os == 'windows-latest'
93+
shell: 'C:/msys64/usr/bin/bash.exe -e {0}'
94+
run: /usr/bin/pacman --noconfirm -S mingw-w64-x86_64-lmdb
95+
8396
- uses: actions/checkout@v4
8497

8598
- name: Cabal update

cabal.project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repository cardano-haskell-packages
1313
-- See CONTRIBUTING for information about these, including some Nix commands
1414
-- you need to run if you change them
1515
index-state:
16-
, hackage.haskell.org 2024-12-24T12:56:48Z
16+
, hackage.haskell.org 2025-01-14T03:16:27Z
1717
, cardano-haskell-packages 2025-02-26T16:38:34Z
1818

1919
packages:
@@ -99,8 +99,8 @@ source-repository-package
9999
source-repository-package
100100
type: git
101101
location: https://github.com/input-output-hk/ouroboros-consensus
102-
tag: 1e2c0fed8e81c15575bf3cd3aaa9b6efde328d8d
103-
--sha256: sha256-osyNYXxJqg4MS6ISXtEneuYRb0xBIr5ztGmxvMyGTL4=
102+
tag: 7b51d0759d44b21279ec3e05c29a6902e42a0f3d
103+
--sha256: sha256-cQTCaYEorAA0RWIv1bqISe7qkBQkPEl6WeRUwzs5/hI=
104104
subdir:
105105
ouroboros-consensus
106106
ouroboros-consensus-cardano

cardano-api/cardano-api.cabal

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,10 @@ library
168168
safe-exceptions,
169169
scientific,
170170
serialise,
171+
singletons,
171172
small-steps ^>=1.1,
172173
sop-core,
174+
sop-extras,
173175
stm,
174176
strict-sop-core,
175177
time,

cardano-api/src/Cardano/Api.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,7 @@ module Cardano.Api
828828
, AnyNewEpochState (..)
829829
, foldEpochState
830830
, getAnyNewEpochState
831+
, getUTxOValues
831832

832833
-- *** Errors
833834
, LedgerStateError (..)

0 commit comments

Comments
 (0)