Skip to content

Commit

Permalink
Merge pull request #55 from dashpay/chore/disable-debug-mode
Browse files Browse the repository at this point in the history
Chore/disable debug mode
  • Loading branch information
pankcuf authored Nov 10, 2023
2 parents af54d15 + 14ad237 commit eaec2d8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ keywords = ["crypto", "dash", "spv"]
[profile.release]
lto = "thin"
opt-level = 3
debug = true
#debug = true
2 changes: 1 addition & 1 deletion DashSharedCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DashSharedCore'
s.version = '0.4.14'
s.version = '0.4.15'
s.summary = 'Dash Core SPV written in Rust'
s.author = 'Dash'
s.description = "C-bindings for Dash Core SPV that can be used in projects for Apple platform"
Expand Down
2 changes: 1 addition & 1 deletion dash-spv-apple-bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dash_spv_apple_bindings"
version = "0.4.14"
version = "0.4.15"
description = "C-bindings for using and interoperating with Dash SPV"
readme = "README.md"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions dash-spv-masternode-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "dash-spv-masternode-processor"
version = "0.4.14"
version = "0.4.15"
description = "Library for processing masternodes and quorums (SPV)"

edition = "2021"
build = "build.rs"
publish = false

[features]
default = ["std", "secp-recovery", "generate-dashj-tests"]
default = ["std", "secp-recovery"]
unstable = []
rand = ["secp256k1/rand-std"]
secp-lowmemory = ["secp256k1/lowmemory"]
Expand Down
4 changes: 2 additions & 2 deletions dash-spv-masternode-processor/src/processing/processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,10 +375,10 @@ impl MasternodeProcessor {
signatures.insert(llmq_hash_minus_8, signature.clone());
cache.cl_signatures.insert(llmq_hash_minus_8, signature.clone());
} else {
println!("unknown hash for {}", llmq_height - 8);
println!("WARN: unknown hash for {}", llmq_height - 8);
}
} else {
println!("unknown height for {}", quorum.llmq_hash);
println!("WARN: unknown height for {}", quorum.llmq_hash);
}
}
if verification_context.should_validate_quorum_of_type(quorum.llmq_type, self.chain_type) {
Expand Down

0 comments on commit eaec2d8

Please sign in to comment.