Commit 7bd8bbaa authored by Kelvin Fichter's avatar Kelvin Fichter Committed by GitHub

cleanup: Cleanups for StateManagerFactory (#290)

parent f13f2e7b
...@@ -10,7 +10,7 @@ import { OVM_StateManager } from "./OVM_StateManager.sol"; ...@@ -10,7 +10,7 @@ import { OVM_StateManager } from "./OVM_StateManager.sol";
/** /**
* @title OVM_StateManagerFactory * @title OVM_StateManagerFactory
* @dev The State Manager Factory is called by a State Transitioner's init code, to create a new * @dev The State Manager Factory is called by a State Transitioner's init code, to create a new
* State Manager for use in the Fraud Verification process. * State Manager for use in the Fraud Verification process.
* *
* Compiler used: solc * Compiler used: solc
...@@ -18,14 +18,14 @@ import { OVM_StateManager } from "./OVM_StateManager.sol"; ...@@ -18,14 +18,14 @@ import { OVM_StateManager } from "./OVM_StateManager.sol";
*/ */
contract OVM_StateManagerFactory is iOVM_StateManagerFactory { contract OVM_StateManagerFactory is iOVM_StateManagerFactory {
/*************************************** /********************
* Public Functions: Contract Creation * * Public Functions *
***************************************/ ********************/
/** /**
* Creates a new OVM_StateManager * Creates a new OVM_StateManager
* @param _owner Owner of the created contract. * @param _owner Owner of the created contract.
* @return _ovmStateManager New OVM_StateManager instance. * @return New OVM_StateManager instance.
*/ */
function create( function create(
address _owner address _owner
...@@ -33,7 +33,7 @@ contract OVM_StateManagerFactory is iOVM_StateManagerFactory { ...@@ -33,7 +33,7 @@ contract OVM_StateManagerFactory is iOVM_StateManagerFactory {
override override
public public
returns ( returns (
iOVM_StateManager _ovmStateManager iOVM_StateManager
) )
{ {
return new OVM_StateManager(_owner); return new OVM_StateManager(_owner);
......
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