File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/java/com/bloxbean/cardano/aiken/tx/evaluator
test/java/com/bloxbean/cardano/aiken/tx/evaluator Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ private static SlotConfig.SlotConfigByReference getDefaultSlotConfig() {
143143
144144 private static InitialBudgetConfig .InitialBudgetByValue getDefaultInitialBudgetConfig () {
145145 InitialBudgetConfig .InitialBudgetByValue initialBudgetConfig = new InitialBudgetConfig .InitialBudgetByValue ();
146- initialBudgetConfig .mem = 10000000 ;
146+ initialBudgetConfig .mem = 14000000L ;
147147 initialBudgetConfig .cpu = 10000000000L ;
148148
149149 return initialBudgetConfig ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ void eval_phase_two() {
3030 slotConfig .slot_length = 1000 ;
3131
3232 InitialBudgetConfig .InitialBudgetByValue initialBudgetConfig = new InitialBudgetConfig .InitialBudgetByValue ();
33- initialBudgetConfig .mem = 16000000L ;
33+ initialBudgetConfig .mem = 14000000L ;
3434 initialBudgetConfig .cpu = 10000000000L ;
3535
3636 for (int i =0 ; i <30 ; i ++) { //Looping to check any occasional jvm crash error
@@ -52,7 +52,7 @@ void eval_phase_two_failed() {
5252 slotConfig .slot_length = 1000 ;
5353
5454 InitialBudgetConfig .InitialBudgetByValue initialBudgetConfig = new InitialBudgetConfig .InitialBudgetByValue ();
55- initialBudgetConfig .mem = 16000000L ;
55+ initialBudgetConfig .mem = 14000000L ;
5656 initialBudgetConfig .cpu = 10000000000L ;
5757
5858 for (int i =0 ; i <30 ; i ++) { //Looping to check any occasional jvm crash error
You can’t perform that action at this time.
0 commit comments