From c03d3e3604cca5366571b4c32167f6fa7f555a0c Mon Sep 17 00:00:00 2001 From: Kasey White <49739331+MicroProofs@users.noreply.github.com> Date: Sun, 21 Aug 2022 16:52:31 -0400 Subject: [PATCH] fix budget restriction back to protocol params (#39) --- crates/uplc/src/machine/cost_model.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/uplc/src/machine/cost_model.rs b/crates/uplc/src/machine/cost_model.rs index 1b2f4f90..755d5c0b 100644 --- a/crates/uplc/src/machine/cost_model.rs +++ b/crates/uplc/src/machine/cost_model.rs @@ -19,8 +19,8 @@ impl ExBudget { impl Default for ExBudget { fn default() -> Self { ExBudget { - mem: 14000000000000, - cpu: 10000000000000000, + mem: 14000000, + cpu: 10000000000, } } }