Skip to content

Commit

Permalink
chore: bump and use latest rust dahs core (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer authored Oct 19, 2024
1 parent 4d4d5b1 commit dcfa6b3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dashcore-rpc"
version = "0.15.8"
version = "0.15.9"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand Down
3 changes: 1 addition & 2 deletions client/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dashcore-rpc-json"
version = "0.15.8"
version = "0.15.9"
authors = [
"Steven Roose <[email protected]>",
"Jean Pierre Dudey <[email protected]>",
Expand All @@ -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"] }

0 comments on commit dcfa6b3

Please sign in to comment.