Skip to content

Commit

Permalink
rename multithread_validation to spend_bundle_validation
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-o-how committed Jul 29, 2024
1 parent 7565924 commit 20f95ce
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/chia-consensus/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ pub mod gen;
pub mod generator_rom;
pub mod merkle_set;
pub mod merkle_tree;
pub mod multiprocess_validation;
pub mod spend_bundle_validation;
pub mod npc_result;
2 changes: 1 addition & 1 deletion crates/chia-consensus/src/npc_result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::gen::flags::MEMPOOL_MODE;
use crate::gen::owned_conditions::OwnedSpendBundleConditions;
use crate::gen::run_block_generator::subtract_cost;
use crate::gen::validation_error::ValidationErr;
use crate::multiprocess_validation::get_flags_for_height_and_constants;
use crate::spend_bundle_validation::get_flags_for_height_and_constants;
use chia_protocol::SpendBundle;
use clvm_utils::{tree_hash_cached, TreeHash};
use clvmr::allocator::{Allocator, NodePtr};
Expand Down
2 changes: 1 addition & 1 deletion wheel/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use chia_consensus::gen::solution_generator::solution_generator as native_soluti
use chia_consensus::gen::solution_generator::solution_generator_backrefs as native_solution_generator_backrefs;
use chia_consensus::merkle_set::compute_merkle_set_root as compute_merkle_root_impl;
use chia_consensus::merkle_tree::{validate_merkle_proof, MerkleSet};
use chia_consensus::multiprocess_validation::validate_clvm_and_signature;
use chia_consensus::spend_bundle_validation::validate_clvm_and_signature;

use chia_consensus::npc_result::get_conditions_from_spendbundle;
use chia_protocol::{
Expand Down

0 comments on commit 20f95ce

Please sign in to comment.