fix budget restriction back to protocol params (#39)

This commit is contained in:
Kasey White 2022-08-21 16:52:31 -04:00 committed by GitHub
parent 2b27261711
commit c03d3e3604
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ impl ExBudget {
impl Default for ExBudget {
fn default() -> Self {
ExBudget {
mem: 14000000000000,
cpu: 10000000000000000,
mem: 14000000,
cpu: 10000000000,
}
}
}