Rename AssetProxyOwner to ZeroExGovernor

This commit is contained in:
Amir Bandeali
2019-10-17 16:54:35 -07:00
parent d6c064b9c3
commit 5ddc35fdf2
2 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ import "@0x/contracts-utils/contracts/src/LibBytes.sol";
import "@0x/contracts-utils/contracts/src/LibSafeMath.sol";
contract AssetProxyOwner is
contract ZeroExGovernor is
MultiSigWalletWithTimeLock
{
using LibBytes for bytes;

View File

@@ -19,12 +19,12 @@
pragma solidity ^0.5.9;
pragma experimental ABIEncoderV2;
import "../src/AssetProxyOwner.sol";
import "../src/ZeroExGovernor.sol";
// solhint-disable no-empty-blocks
contract TestAssetProxyOwner is
AssetProxyOwner
contract TestZeroExGovernor is
ZeroExGovernor
{
constructor (
bytes4[] memory _functionSelectors,
@@ -35,7 +35,7 @@ contract TestAssetProxyOwner is
uint256 _defaultSecondsTimeLocked
)
public
AssetProxyOwner(
ZeroExGovernor(
_functionSelectors,
_destinations,
_functionCallTimeLockSeconds,