diff --git a/client/Cargo.toml b/client/Cargo.toml index f481502f..7dbef504 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dashcore-rpc" -version = "0.15.8" +version = "0.15.9" authors = [ "Steven Roose ", "Jean Pierre Dudey ", diff --git a/client/src/client.rs b/client/src/client.rs index 6d89b9e9..c5c23159 100644 --- a/client/src/client.rs +++ b/client/src/client.rs @@ -27,13 +27,12 @@ use dashcore::secp256k1::ecdsa::Signature; use dashcore::{ Address, Amount, Block, OutPoint, PrivateKey, ProTxHash, PublicKey, QuorumHash, Transaction, }; -use dashcore_private::hex::display::DisplayHex; use dashcore_rpc_json::dashcore::bls_sig_utils::BLSSignature; use dashcore_rpc_json::dashcore::{BlockHash, ChainLock}; use dashcore_rpc_json::{ProTxInfo, ProTxListType, QuorumType}; use hex::ToHex; use log::Level::{Debug, Trace, Warn}; - +use crate::dashcore::secp256k1::hashes::hex::DisplayHex; use crate::error::*; use crate::json; use crate::queryable; diff --git a/json/Cargo.toml b/json/Cargo.toml index 3d7ba86d..52370dde 100644 --- a/json/Cargo.toml +++ b/json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dashcore-rpc-json" -version = "0.15.8" +version = "0.15.9" authors = [ "Steven Roose ", "Jean Pierre Dudey ", @@ -25,6 +25,6 @@ serde_with = "2.1.0" serde_repr = "0.1" hex = { version="0.4", features=["serde"]} -dashcore = { git="https://github.com/dashpay/rust-dashcore.git", features=["std", "secp-recovery", "rand-std", "signer", "serde"], default-features = false, tag = "0.32.0" } +dashcore = { git="https://github.com/dashpay/rust-dashcore.git", features=["std", "secp-recovery", "rand-std", "signer", "serde"], default-features = false, tag = "0.33.1" } bincode = { version = "2.0.0-rc.3", features = ["serde"] }