From cb545f8fa3834339156fdf9e5fdede3ad44f4d0f Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Sun, 13 Sep 2020 02:08:43 +0530 Subject: [PATCH] Remaned `token` => `pool` in events --- contracts/registry.sol | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contracts/registry.sol b/contracts/registry.sol index fb7fffa..e66df77 100644 --- a/contracts/registry.sol +++ b/contracts/registry.sol @@ -11,11 +11,11 @@ contract Registry { event LogAddChief(address indexed chief); event LogRemoveChief(address indexed chief); - event LogUpdatePoolLogic(address token, address newLogic); - event LogUpdateFee(address token, uint newFee); - event LogUpdateCap(address token, uint newFee); - event LogAddSettleLogic(address indexed token, address indexed logic); - event LogRemoveSettleLogic(address indexed token, address indexed logic); + event LogUpdatePoolLogic(address pool, address newLogic); + event LogUpdateFee(address pool, uint newFee); + event LogUpdateCap(address pool, uint newCap); + event LogAddSettleLogic(address indexed pool, address indexed logic); + event LogRemoveSettleLogic(address indexed pool, address indexed logic); IndexInterface public constant instaIndex = IndexInterface(0x2971AdFa57b20E5a416aE5a708A8655A9c74f723);