Merge branch 'main' into lang

This commit is contained in:
rvcas
2022-09-26 11:15:02 -04:00
9 changed files with 47 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
[package]
name = "aiken"
description = "Cardano smart contract language and toolchain"
version = "0.0.13"
version = "0.0.14"
edition = "2021"
repository = "https://github.com/txpipe/aiken"
homepage = "https://github.com/txpipe/aiken"
@@ -21,4 +21,4 @@ pallas-primitives = "0.14.0-alpha.3"
pallas-traverse = "0.14.0-alpha.3"
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
uplc = { path = '../uplc', version = "0.0.13" }
uplc = { path = '../uplc', version = "0.0.14" }

View File

@@ -1,7 +1,7 @@
[package]
name = "uplc"
description = "Utilities for working with Untyped Plutus Core"
version = "0.0.13"
version = "0.0.14"
edition = "2021"
repository = "https://github.com/txpipe/aiken/crates/uplc"
homepage = "https://github.com/txpipe/aiken"

View File

@@ -116,7 +116,7 @@ pub fn eval_phase_two_raw(
.iter()
.map(|r| r.encode_fragment().unwrap())
.collect()),
Err(_) => Err(Error::NoRedeemers),
Err(err) => Err(err),
}
}
// MultiEraTx::AlonzoCompatible(tx, _) => match eval_tx(&tx, &utxos, &sc) {