From b67afb8bd96c431b684ee4ac9078753581d09973 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Wed, 7 Oct 2020 20:42:45 +0530 Subject: [PATCH] Fixed bug --- contracts/logics/settle/eth/basic.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/logics/settle/eth/basic.sol b/contracts/logics/settle/eth/basic.sol index cd02417..73c11b7 100644 --- a/contracts/logics/settle/eth/basic.sol +++ b/contracts/logics/settle/eth/basic.sol @@ -9,7 +9,8 @@ import { DSMath } from "../../../libs/safeMath.sol"; interface DSAInterface { function cast(address[] calldata _targets, bytes[] calldata _data, address _origin) external payable; - function isAuth(address) external returns(bool); + function isAuth(address) external view returns(bool); + } contract LogicOne {