Skip to content

Commit

Permalink
Update CML to 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rooooooooob committed Aug 27, 2024
1 parent b7578ad commit c34a7f3
Show file tree
Hide file tree
Showing 7 changed files with 166 additions and 52 deletions.
190 changes: 152 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [


[workspace.dependencies]
cml-chain = { version = "5.3.1" }
cml-core = { version = "5.3.1" }
cml-crypto = { version = "5.3.1" }
cml-multi-era = { version = "5.3.1" }
cml-chain = { version = "6.0.0" }
cml-core = { version = "6.0.0" }
cml-crypto = { version = "6.0.0" }
cml-multi-era = { version = "6.0.0" }
6 changes: 3 additions & 3 deletions indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ strip = true

[dependencies]
# [core]
dcspark-core = { git = "https://github.com/dcSpark/dcspark-core.git", rev = "b891d8757b598db2fc8013ba76414739e8ab1678" }
dcspark-blockchain-source = { git = "https://github.com/dcSpark/dcspark-core.git", rev = "b891d8757b598db2fc8013ba76414739e8ab1678" }
multiverse = { git = "https://github.com/dcSpark/dcspark-core.git", rev = "b891d8757b598db2fc8013ba76414739e8ab1678" }
dcspark-core = { git = "https://github.com/dcSpark/dcspark-core.git", rev = "63105adc46478eea57340bcbfc5425ced0ba139f" }
dcspark-blockchain-source = { git = "https://github.com/dcSpark/dcspark-core.git", rev = "63105adc46478eea57340bcbfc5425ced0ba139f" }
multiverse = { git = "https://github.com/dcSpark/dcspark-core.git", rev = "63105adc46478eea57340bcbfc5425ced0ba139f" }

# [local]
entity = { path = "entity" }
Expand Down
2 changes: 1 addition & 1 deletion indexer/tasks/src/multiera/multiera_asset_mint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async fn handle_mints(
for (asset_name, amount) in assets.iter() {
queued_mints.push((
cardano_transaction.id,
(policy_id.to_raw_bytes().to_vec(), asset_name.get().clone()),
(policy_id.to_raw_bytes().to_vec(), asset_name.to_raw_bytes().to_vec()),
*amount,
));
}
Expand Down
Loading

0 comments on commit c34a7f3

Please sign in to comment.