Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit e946ddc

Browse files
NikVolfarkpar
authored andcommitted
missing commas (style)
1 parent 7091587 commit e946ddc

File tree

1 file changed

+3
-3
lines changed
  • ethcore/evm/src/interpreter

1 file changed

+3
-3
lines changed

ethcore/evm/src/interpreter/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,10 @@ impl<Cost: CostType> Interpreter<Cost> {
350350
ContractCreateResult::Failed => {
351351
stack.push(U256::zero());
352352
Ok(InstructionResult::Ok)
353-
}
353+
},
354354
ContractCreateResult::FailedInStaticCall => {
355355
Err(vm::Error::MutableCallInStaticContext)
356-
}
356+
},
357357
};
358358
},
359359
instructions::CALL | instructions::CALLCODE | instructions::DELEGATECALL | instructions::STATICCALL => {
@@ -432,7 +432,7 @@ impl<Cost: CostType> Interpreter<Cost> {
432432
MessageCallResult::Failed => {
433433
stack.push(U256::zero());
434434
Ok(InstructionResult::Ok)
435-
}
435+
},
436436
};
437437
},
438438
instructions::RETURN => {

0 commit comments

Comments
 (0)