From 38b0b5bf241d143a1309becbb2a60358d298b05d Mon Sep 17 00:00:00 2001
From: Thrilok Kumar <thrilok2000@gmail.com>
Date: Thu, 22 Apr 2021 06:12:08 +0530
Subject: [PATCH] Minor fix

---
 contracts/mainnet/connectors/COMP/helpers.sol | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contracts/mainnet/connectors/COMP/helpers.sol b/contracts/mainnet/connectors/COMP/helpers.sol
index 775106f2..c793843e 100644
--- a/contracts/mainnet/connectors/COMP/helpers.sol
+++ b/contracts/mainnet/connectors/COMP/helpers.sol
@@ -22,8 +22,8 @@ abstract contract Helpers is DSMath, Basic {
     CompoundMappingInterface internal constant compMapping = CompoundMappingInterface(0xA8F9D4aA7319C54C04404765117ddBf9448E2082);
 
     function getMergedCTokens(
-        string[] memory supplyIds,
-        string[] memory borrowIds
+        string[] calldata supplyIds,
+        string[] calldata borrowIds
     ) internal view returns (address[] memory ctokens, bool isBorrow, bool isSupply) {
         uint _supplyLen = supplyIds.length;
         uint _borrowLen = borrowIds.length;