From 5655b601b37ae249f39cbe380e42232d67b64d84 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Wed, 2 May 2018 16:57:25 -0400 Subject: [PATCH] IdentityGasRelay is a Kernel --- contracts/identity/IdentityGasRelay.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/identity/IdentityGasRelay.sol b/contracts/identity/IdentityGasRelay.sol index ca5b8d2..33e60c9 100644 --- a/contracts/identity/IdentityGasRelay.sol +++ b/contracts/identity/IdentityGasRelay.sol @@ -1,6 +1,6 @@ pragma solidity ^0.4.21; -import "./Identity.sol"; +import "./IdentityKernel.sol"; import "../common/MessageSigned.sol"; import "../token/ERC20Token.sol"; @@ -9,7 +9,7 @@ import "../token/ERC20Token.sol"; * @author Ricardo Guilherme Schmidt (Status Research & Development GmbH) * @notice enables economic abstraction for Identity */ -contract IdentityGasRelay is Identity, MessageSigned { +contract IdentityGasRelay is IdentityKernel, MessageSigned { bytes4 public constant CALL_PREFIX = bytes4(keccak256("callGasRelay(address,uint256,bytes32,uint256,uint256,address)")); bytes4 public constant APPROVEANDCALL_PREFIX = bytes4(keccak256("approveAndCallGasRelay(address,address,uint256,bytes32,uint256,uint256)"));