Reverting earlier change: interfaces now inherit from other interfaces
This commit is contained in:
committed by
Amir Bandeali
parent
41242a6660
commit
ac0c35424b
@@ -18,7 +18,9 @@
|
||||
|
||||
pragma solidity ^0.4.21;
|
||||
|
||||
contract IAssetProxy {
|
||||
import "../../../utils/Authorizable/IAuthorizable.sol";
|
||||
|
||||
contract IAssetProxy is IAuthorizable {
|
||||
|
||||
/// @dev Transfers assets. Either succeeds or throws.
|
||||
/// @param assetMetadata Byte array encoded for the respective asset proxy.
|
||||
|
@@ -18,9 +18,15 @@
|
||||
|
||||
pragma solidity ^0.4.21;
|
||||
|
||||
import "../../utils/Ownable/IOwnable.sol";
|
||||
import "../../utils/Authorizable/IAuthorizable.sol";
|
||||
import "./IAssetProxy.sol";
|
||||
|
||||
contract IAssetProxyDispatcher {
|
||||
contract IAssetProxyDispatcher is
|
||||
IOwnable,
|
||||
IAuthorizable,
|
||||
IAssetProxy
|
||||
{
|
||||
|
||||
// Logs registration of new asset proxy
|
||||
event AssetProxySet(
|
||||
|
Reference in New Issue
Block a user