diff options
-rw-r--r-- | packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol b/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol index fc61112eb..7f46766d6 100644 --- a/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol +++ b/packages/contracts/src/contracts/current/protocol/Exchange/MixinSignatureValidator.sol @@ -33,10 +33,10 @@ contract MixinSignatureValidator is { // Mapping of hash => signer => signed - mapping (bytes32 => mapping (address => bool)) preSigned; + mapping (bytes32 => mapping (address => bool)) public preSigned; // Mapping of signer => validator => approved - mapping (address => mapping (address => bool)) allowedValidators; + mapping (address => mapping (address => bool)) public allowedValidators; /// @dev Approves a hash on-chain using any valid signature type. /// After presigning a hash, the preSign signature type will become valid for that hash and signer. |