Fixing mem_gas_cost calcualtion by jumping to U512

This commit is contained in:
Tomusdrw 2016-01-17 13:59:30 +01:00
parent 83ac4bce06
commit aca68dcfe7
1 changed files with 3 additions and 2 deletions

View File

@ -490,8 +490,9 @@ impl Interpreter {
let s = mem_size >> 5;
// s * memory_gas + s * s / quad_coeff_div
let a = overflowing!(s.overflowing_mul(U256::from(schedule.memory_gas)));
let b = overflowing!(s.overflowing_mul(s / U256::from(schedule.quad_coeff_div)));
Ok(a + b)
// We need to go to U512 to calculate s*s/quad_coeff_div
let b = U256::from(U512::from(s) * U512::from(s) / U512::from(schedule.quad_coeff_div));
Ok(overflowing!(a.overflowing_add(b)))
};
let current_mem_size = U256::from(current_mem_size);
let req_mem_size_rounded = (overflowing!(mem_size.overflowing_add(U256::from(31))) >> 5) << 5;