From 44833ac4cf9a34d97007110095dcb374b9e5ee86 Mon Sep 17 00:00:00 2001 From: 0age <37939117+0age@users.noreply.github.com> Date: Sun, 9 Dec 2018 09:29:16 -0500 Subject: [PATCH] Update to inherit ERC1616 --- contracts/mock/AttributeRegistry.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts/mock/AttributeRegistry.sol b/contracts/mock/AttributeRegistry.sol index b33a171..6c4e198 100644 --- a/contracts/mock/AttributeRegistry.sol +++ b/contracts/mock/AttributeRegistry.sol @@ -1,12 +1,12 @@ pragma solidity ^0.4.25; -import "../AttributeRegistryInterface.sol"; +import "../ERC1616.sol"; /** - * @title A simple example of an Attribute Registry implementation. + * @title A simple example of an ERC1616 Attribute Registry implementation. */ -contract AttributeRegistry is AttributeRegistryInterface { +contract AttributeRegistry is ERC1616 { // This particular implementation just defines two attribute types. enum Affiliation { Whitehat, Blackhat } @@ -194,4 +194,4 @@ contract AttributeRegistry is AttributeRegistryInterface { return _attributeTypeIDs[index]; } -} \ No newline at end of file +}