Skip to content

Commit

Permalink
Reverse part of this because it's taken care of by operator selection
Browse files Browse the repository at this point in the history
  • Loading branch information
prozacchiwawa committed Jul 20, 2024
1 parent b5fb3d1 commit 5dd4de0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/classic/clvm_tools/stages/stage_2/operators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::path::PathBuf;
use std::rc::Rc;

use clvm_rs::allocator::{Allocator, NodePtr, SExp};
use clvm_rs::chia_dialect::{ChiaDialect, ENABLE_BLS_OPS_OUTSIDE_GUARD, NO_UNKNOWN_OPS};
use clvm_rs::chia_dialect::{ChiaDialect, NO_UNKNOWN_OPS};
use clvm_rs::cost::Cost;
use clvm_rs::dialect::{Dialect, OperatorSet};
use clvm_rs::reduction::{EvalErr, Reduction, Response};
Expand Down Expand Up @@ -122,9 +122,7 @@ impl Drop for CompilerOperators {

impl CompilerOperatorsInternal {
pub fn new(source_file: &str, search_paths: Vec<String>, symbols_extra_info: bool) -> Self {
let base_dialect = Rc::new(ChiaDialect::new(
NO_UNKNOWN_OPS | ENABLE_BLS_OPS_OUTSIDE_GUARD,
));
let base_dialect = Rc::new(ChiaDialect::new(NO_UNKNOWN_OPS));
let base_runner = Rc::new(DefaultProgramRunner::new());
CompilerOperatorsInternal {
base_dialect,
Expand Down

0 comments on commit 5dd4de0

Please sign in to comment.