Commit 8b4a26a5 authored by Kelvin Fichter's avatar Kelvin Fichter Committed by GitHub

Tiny cleanup to SafetyChecker (#262)

Co-authored-by: default avatarMark Tyneway <mark.tyneway@gmail.com>
parent d7fce2b2
...@@ -22,6 +22,7 @@ contract OVM_SafetyChecker is iOVM_SafetyChecker { ...@@ -22,6 +22,7 @@ contract OVM_SafetyChecker is iOVM_SafetyChecker {
/******************** /********************
* Public Functions * * Public Functions *
********************/ ********************/
/** /**
* Returns whether or not all of the provided bytecode is safe. * Returns whether or not all of the provided bytecode is safe.
* @param _bytecode The bytecode to safety check. * @param _bytecode The bytecode to safety check.
...@@ -33,7 +34,9 @@ contract OVM_SafetyChecker is iOVM_SafetyChecker { ...@@ -33,7 +34,9 @@ contract OVM_SafetyChecker is iOVM_SafetyChecker {
override override
external external
pure pure
returns (bool) returns (
bool
)
{ {
// autogenerated by gen_safety_checker_constants.py // autogenerated by gen_safety_checker_constants.py
// number of bytes to skip for each opcode // number of bytes to skip for each opcode
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment