From 2b295d1c5f69fb8e150f636de05424e3ab28ee4f Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Sat, 15 Aug 2020 04:08:12 +0530 Subject: [PATCH] Bug fix --- contracts/protocols/chainlink.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/protocols/chainlink.sol b/contracts/protocols/chainlink.sol index 359d4c7..147f12c 100644 --- a/contracts/protocols/chainlink.sol +++ b/contracts/protocols/chainlink.sol @@ -73,7 +73,7 @@ contract Basic { } } - function removeChainLinkMapping(address tokenAddr) public isChief { + function removeChainLinkMapping(address[] memory tokenAddr) public isChief { for (uint i = 0; i < tokensAddr.length; i++) { _removeChainLinkMapping(tokensAddr[i]); }