Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: monero merkle tree params #6336

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 15 additions & 12 deletions applications/minotari_node/src/grpc/base_node_grpc_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,12 @@ impl tari_rpc::base_node_server::BaseNode for BaseNodeGrpcServer {
let (start_height, end_height) = get_heights(&request, handler.clone())
.await
.map_err(|e| obscure_error_if_true(report_error_flag, e))?;
let num_requested = end_height.checked_sub(start_height).ok_or(obscure_error_if_true(
report_error_flag,
Status::invalid_argument("Start height is more than end height"),
))?;
let num_requested = end_height.checked_sub(start_height).ok_or_else(|| {
obscure_error_if_true(
report_error_flag,
Status::invalid_argument("Start height is more than end height"),
)
})?;
if num_requested > GET_DIFFICULTY_MAX_HEIGHTS {
return Err(obscure_error_if_true(
report_error_flag,
Expand Down Expand Up @@ -810,10 +812,9 @@ impl tari_rpc::base_node_server::BaseNode for BaseNodeGrpcServer {
coinbase.value = u64::try_from(
(cur_share_sum.saturating_mul(reward))
.checked_div(total_shares)
.ok_or(obscure_error_if_true(
report_error_flag,
Status::internal("total shares are zero".to_string()),
))? -
.ok_or_else(|| {
obscure_error_if_true(report_error_flag, Status::internal("total shares are zero".to_string()))
})? -
prev_coinbase_value,
)
.map_err(|_| {
Expand Down Expand Up @@ -981,10 +982,12 @@ impl tari_rpc::base_node_server::BaseNode for BaseNodeGrpcServer {
debug!(target: LOG_TARGET, "Incoming GRPC request for get new block with coinbases");
let mut block_template: NewBlockTemplate = request
.new_template
.ok_or(obscure_error_if_true(
report_error_flag,
Status::invalid_argument("Malformed block template provided".to_string()),
))?
.ok_or_else(|| {
obscure_error_if_true(
report_error_flag,
Status::invalid_argument("Malformed block template provided".to_string()),
)
})?
.try_into()
.map_err(|s| {
obscure_error_if_true(
Expand Down
12 changes: 10 additions & 2 deletions base_layer/core/src/proof_of_work/monero_rx/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ use tari_utilities::hex::HexError;

use crate::{
common::{BanPeriod, BanReason},
proof_of_work::{randomx_factory::RandomXVMFactoryError, DifficultyError},
proof_of_work::{
monero_rx::merkle_tree_parameters::MerkleTreeParametersError,
randomx_factory::RandomXVMFactoryError,
DifficultyError,
},
};

/// Errors that can occur when merging Monero PoW data with Tari PoW data
Expand All @@ -50,6 +54,8 @@ pub enum MergeMineError {
DifficultyError(#[from] DifficultyError),
#[error("Cannot mine with 0 aux chains")]
ZeroAuxChains,
#[error("Merkle Tree Parameters error: {0}")]
MerkleTreeParamsError(#[from] MerkleTreeParametersError),
}

impl MergeMineError {
Expand All @@ -66,7 +72,9 @@ impl MergeMineError {
reason: err.to_string(),
ban_duration: BanPeriod::Long,
}),
MergeMineError::RandomXVMFactoryError(_) | MergeMineError::ZeroAuxChains => None,
MergeMineError::RandomXVMFactoryError(_) |
MergeMineError::ZeroAuxChains |
MergeMineError::MerkleTreeParamsError(_) => None,
}
}
}
Expand Down
11 changes: 4 additions & 7 deletions base_layer/core/src/proof_of_work/monero_rx/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,18 +162,18 @@ fn check_aux_chains(
}
}
let merkle_tree_params = MerkleTreeParameters::from_varint(merge_mining_params);
if merkle_tree_params.number_of_chains == 0 {
if merkle_tree_params.number_of_chains() == 0 {
return false;
}
let hash_position = U256::from_little_endian(
&Sha256::new()
.chain_update(tari_genesis_block_hash)
.chain_update(merkle_tree_params.aux_nonce.to_le_bytes())
.chain_update(merkle_tree_params.aux_nonce().to_le_bytes())
.chain_update((109_u8).to_le_bytes())
.finalize(),
)
.low_u32() %
u32::from(merkle_tree_params.number_of_chains);
u32::from(merkle_tree_params.number_of_chains());
let (merkle_root, pos) = monero_data.aux_chain_merkle_proof.calculate_root_with_pos(&t_hash);
if hash_position != pos {
return false;
Expand Down Expand Up @@ -342,10 +342,7 @@ pub fn insert_aux_chain_mr_and_info_into_block<T: AsRef<[u8]>>(
let encoded = if aux_chain_count == 1 {
VarInt(0)
} else {
let mt_params = MerkleTreeParameters {
number_of_chains: aux_chain_count,
aux_nonce,
};
let mt_params = MerkleTreeParameters::new(aux_chain_count, aux_nonce)?;
mt_params.to_varint()
};
extra_field.0.insert(0, SubField::MergeMining(encoded, hash));
Expand Down
Loading
Loading