ERC20 V1 proxy compiling
This commit is contained in:
committed by
Amir Bandeali
parent
219d6c294d
commit
86f79949ea
@@ -20,19 +20,19 @@ pragma solidity ^0.4.21;
|
||||
|
||||
import "../IAssetProxy.sol";
|
||||
import "../../../utils/LibBytes/LibBytes.sol";
|
||||
import "../../TokenTransferProxy/ITokenTransferProxy.sol";
|
||||
import "../../../utils/Authorizable/Authorizable.sol";
|
||||
import { ITokenTransferProxy as ITokenTransferProxy_v1 } from "../../TokenTransferProxy/ITokenTransferProxy.sol";
|
||||
|
||||
contract ERC20TransferProxy_v1 is
|
||||
LibBytes,
|
||||
Authorizable,
|
||||
IAssetProxy
|
||||
{
|
||||
ITokenTransferProxy TRANSFER_PROXY;
|
||||
ITokenTransferProxy_v1 TRANSFER_PROXY;
|
||||
|
||||
/// @dev Contract constructor.
|
||||
/// @param tokenTransferProxyContract erc20 token transfer proxy contract.
|
||||
function ERC20TransferProxy_v1(ITokenTransferProxy tokenTransferProxyContract)
|
||||
function ERC20TransferProxy_v1(ITokenTransferProxy_v1 tokenTransferProxyContract)
|
||||
public
|
||||
{
|
||||
TRANSFER_PROXY = tokenTransferProxyContract;
|
||||
|
Reference in New Issue
Block a user