Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cardano-node-9.2.1 #218

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build dependencies for integration test
run: |
cabal update
cabal install -j cardano-node cardano-cli --overwrite-policy=always
cabal install -j cardano-node-9.2.1 cardano-cli-9.4.1.0 --overwrite-policy=always
cabal install -j convex-wallet --overwrite-policy=always
echo "/home/runner/.cabal/bin" >> $GITHUB_PATH

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@ The `main` branch uses the following versions of its major dependencies:

|Name|Version|
|--|--|
|`cardano-node`|[9.1.1](https://github.com/IntersectMBO/cardano-node/releases/tag/9.1.1)|
|`cardano-node`|[9.2.1](https://github.com/IntersectMBO/cardano-node/releases/tag/9.2.1)|
|`cardano-api`|[9.3.0.0](https://chap.intersectmbo.org/package/cardano-api-9.3.0.0/)|
|`ghc`|9.6.6|
|`cabal`|3.10.3.0|

Support for `ghc-8.10.7` and `cardano-node-1.35.4` will be maintained for a little while in the [`node-1.35.4`](https://github.com/j-mueller/sc-tools/tree/node-1.35.4) branch.

## Building transactions

We use the `TxBodyContent BuildTx BabbageEra` type from `cardano-api` as the basic type for building transactions. The `MonadBuildTx` class from `Convex.BuildTx` is essentially a writer for `TxBodyContent` modifications. `Convex.BuildTx` defines a number of helper functions for common tasks such as spending and creating Plutus script outputs, minting native assets, setting collateral, etc.
Expand Down
3 changes: 2 additions & 1 deletion cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ repository cardano-haskell-packages
with-compiler: ghc-9.6.6
index-state:
, hackage.haskell.org 2024-10-01T11:46:38Z
, cardano-haskell-packages 2024-09-17T19:03:21Z
, cardano-haskell-packages 2024-09-25T16:01:20Z


multi-repl: true

Expand Down
2 changes: 1 addition & 1 deletion src/devnet/test/Spec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ main = do

checkCardanoNode :: IO ()
checkCardanoNode = do
let expectedVersion = "9.1.1"
let expectedVersion = "9.2.1"
version <- getCardanoNodeVersion
let isExpected = expectedVersion `isInfixOf` version
unless isExpected (putStrLn version)
Expand Down
Loading