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

cleanup: Cleanups for StateManagerFactory (#290)

parent f13f2e7b
......@@ -18,14 +18,14 @@ import { OVM_StateManager } from "./OVM_StateManager.sol";
*/
contract OVM_StateManagerFactory is iOVM_StateManagerFactory {
/***************************************
* Public Functions: Contract Creation *
***************************************/
/********************
* Public Functions *
********************/
/**
* Creates a new OVM_StateManager
* @param _owner Owner of the created contract.
* @return _ovmStateManager New OVM_StateManager instance.
* @return New OVM_StateManager instance.
*/
function create(
address _owner
......@@ -33,7 +33,7 @@ contract OVM_StateManagerFactory is iOVM_StateManagerFactory {
override
public
returns (
iOVM_StateManager _ovmStateManager
iOVM_StateManager
)
{
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