Skip to content

Commit

Permalink
v0.52.0-dan.6
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Nov 6, 2023
1 parent fe787a5 commit ae10c63
Show file tree
Hide file tree
Showing 28 changed files with 54 additions and 53 deletions.
48 changes: 24 additions & 24 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 applications/minotari_app_grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "This crate is to provide a single source for all cross application grpc files and conversions to and from tari::core"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_app_utilities/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minotari_app_utilities"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_console_wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minotari_console_wallet"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ impl wallet_server::Wallet for WalletGrpcServer {
.ok_or_else(|| Status::invalid_argument("Validator node signature is missing!"))?
.try_into()
.map_err(|_| Status::invalid_argument("Validator node signature is malformed!"))?;
let validator_node_claim_public_key = PublicKey::from_bytes(&request.validator_node_claim_public_key)
let validator_node_claim_public_key = PublicKey::from_canonical_bytes(&request.validator_node_claim_public_key)
.map_err(|_| Status::invalid_argument("Claim public key is malformed"))?;

let constants = self.get_consensus_constants().map_err(|e| {
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_merge_mining_proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The Tari merge mining proxy for xmrig"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[features]
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_miner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The tari miner implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The tari full base node implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/common_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tari_common_types"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency common types"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/contacts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tari_contacts"
authors = ["The Tari Development Community"]
description = "Tari contacts library"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/tari-project/tari"
homepage = "https://tari.com"
readme = "README.md"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[features]
Expand Down
7 changes: 4 additions & 3 deletions base_layer/core/src/chain_storage/lmdb_db/lmdb_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ impl LMDBDatabase {
)?;
let mut smt = self.fetch_tip_smt()?;

self.delete_block_inputs_outputs(write_txn, block_hash.as_slice(), &mut smt, height)?;
self.delete_block_inputs_outputs(write_txn, block_hash.as_slice(), height, &mut smt)?;
self.insert_tip_smt(write_txn, &smt)?;
self.delete_block_kernels(write_txn, block_hash.as_slice())?;

Expand Down Expand Up @@ -892,14 +892,15 @@ impl LMDBDatabase {
continue;
}

if let Some(vn_reg) = output
if let Some(vn_reg) = utxo
.output
.features
.sidechain_feature
.as_ref()
.and_then(|f| f.validator_node_registration())
{
self.validator_node_store(txn)
.delete(height, vn_reg.public_key(), &output.commitment)?;
.delete(height, vn_reg.public_key(), &utxo.output.commitment)?;
}

// if an output was burned, it was never created as an unspent utxo
Expand Down
2 changes: 1 addition & 1 deletion base_layer/key_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet key management"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/mmr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "A Merkle Mountain Range implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[features]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_p2p"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
authors = ["The Tari Development community"]
description = "Tari base layer-specific peer-to-peer communication features"
repository = "https://github.com/tari-project/tari"
Expand Down
2 changes: 1 addition & 1 deletion base_layer/service_framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_service_framework"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
authors = ["The Tari Development Community"]
description = "The Tari communication stack service framework"
repository = "https://github.com/tari-project/tari"
Expand Down
2 changes: 1 addition & 1 deletion base_layer/wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "minotari_wallet"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet library"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/wallet_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "minotari_wallet_ffi"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet C FFI bindings"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/tari-project/tari"
homepage = "https://tari.com"
readme = "README.md"
license = "BSD-3-Clause"
version = "0.52.0-dan.5"
version = "0.52.0-dan.6"
edition = "2018"

[features]
Expand Down
Loading

0 comments on commit ae10c63

Please sign in to comment.