From d625b65a095381c3fa8dd3192ee2115ee739cc07 Mon Sep 17 00:00:00 2001 From: Amir Bandeali Date: Tue, 29 May 2018 09:03:23 -0700 Subject: Make preSigned and allowedValidators mappings public --- .../contracts/current/protocol/Exchange/MixinSignatureValidator.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/contracts/src') 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. -- cgit v1.2.3