Removing println

This commit is contained in:
Tomusdrw 2016-01-17 12:06:37 +01:00
parent 4df5f0ca31
commit eb4a9d8586

View File

@ -631,7 +631,6 @@ impl Interpreter {
return match call_result { return match call_result {
MessageCallResult::Success(gas_left) => { MessageCallResult::Success(gas_left) => {
println!("Unused: {}", gas_left);
stack.push(U256::one()); stack.push(U256::one());
Ok(InstructionResult::UnusedGas(gas_left)) Ok(InstructionResult::UnusedGas(gas_left))
}, },