Add addressOf to Registry

This commit is contained in:
nolash 2020-12-16 13:18:08 +01:00
parent ad3be535ba
commit 9b42a393ea
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 2 additions and 0 deletions

View File

@ -12,4 +12,6 @@ interface Registry {
function configSumOf(bytes32 _chain) external view returns (bytes32);
function set (bytes32 _identifier, address _address, bytes32 _chainDescriptor, bytes32 _chainConfig) external returns (bool);
function seal() external returns (bool);
// TODO: extend RegistryClient, but flatten files
function addressOf(bytes32) external view returns (address);
}