Clarified that 0x0 could be passed into AssetProxyDispatcher
This commit is contained in:
committed by
Amir Bandeali
parent
e80f203efc
commit
41242a6660
@@ -55,8 +55,8 @@ contract AssetProxyDispatcher is
|
||||
|
||||
/// @dev Adds a new asset proxy.
|
||||
/// @param assetProxyId Id of the asset proxy.
|
||||
/// @param newAssetProxy Asset proxy contract to add.
|
||||
/// @param currentAssetProxy Existing asset proxy to overwrite.
|
||||
/// @param newAssetProxy Asset proxy contract to add, or 0x0 to unset assetProxyId.
|
||||
/// @param currentAssetProxy Existing asset proxy to overwrite, or 0x0 if assetProxyId is currently unused.
|
||||
function addAssetProxy(
|
||||
uint8 assetProxyId,
|
||||
IAssetProxy newAssetProxy,
|
||||
|
@@ -31,8 +31,8 @@ contract IAssetProxyDispatcher {
|
||||
|
||||
/// @dev Adds a new asset proxy.
|
||||
/// @param assetProxyId Id of the asset proxy.
|
||||
/// @param newAssetProxy Asset proxy contract to add.
|
||||
/// @param currentAssetProxy Existing asset proxy to overwrite.
|
||||
/// @param newAssetProxy Asset proxy contract to add, or 0x0 to unset assetProxyId.
|
||||
/// @param currentAssetProxy Existing asset proxy to overwrite, or 0x0 if assetProxyId is currently unused.
|
||||
function addAssetProxy(
|
||||
uint8 assetProxyId,
|
||||
IAssetProxy newAssetProxy,
|
||||
|
Reference in New Issue
Block a user