Remove points_limit and update tests

This commit is contained in:
Brandon Fish
2019-06-02 13:37:51 -05:00
parent c020c39193
commit f9c8f41232
2 changed files with 31 additions and 31 deletions

View File

@ -59,8 +59,6 @@ pub struct CompilerConfig {
pub symbol_map: Option<HashMap<u32, String>>,
pub memory_bound_check_mode: MemoryBoundCheckMode,
pub enforce_stack_check: bool,
/// Enables metering functionality if set and used as default points limit during compilation
pub points_limit: Option<u64>,
}
pub trait Compiler {