From 6b20929c27c53ebd82e19d716129c51fb96fa16a Mon Sep 17 00:00:00 2001 From: dashinfraclaw Date: Thu, 26 Mar 2026 08:27:50 +0000 Subject: [PATCH] chore: update rust-dashcore dependency to store TransactionContext in TransactionRecord Update dashcore/dashcore-rpc git dependencies to 5114330ae564858803d656efba84bb4adacb2a2e for integration testing of dashpay/rust-dashcore#582. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7d953b8..2d834ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,12 +5,12 @@ edition = "2021" [dependencies] # dash-sdk = { git = "https://github.com/dashpay/platform", tag = "v1.8.0" } -dashcore = { git = "https://github.com/dashpay/rust-dashcore", tag = "v0.40.0", default-features = false, features = [ +dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "5114330ae564858803d656efba84bb4adacb2a2e", default-features = false, features = [ "std", "secp-recovery", "bincode", ] } -dashcore-rpc = { git = "https://github.com/dashpay/rust-dashcore", tag = "v0.40.0" } +dashcore-rpc = { git = "https://github.com/dashpay/rust-dashcore", rev = "5114330ae564858803d656efba84bb4adacb2a2e" } crossbeam-channel = "0.5.13" futures = "0.3.31" serde = { version = "1.0.217", features = ["derive"] }