Skip to content

Commit

Permalink
fix key for removeOracleSignerAfterSignal
Browse files Browse the repository at this point in the history
  • Loading branch information
xdev10 committed May 3, 2023
1 parent 7bbadf2 commit 3ef1161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/config/Timelock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ contract Timelock is ReentrancyGuard, RoleModule, BasicMulticall {
}

function removeOracleSignerAfterSignal(address account) external onlyTimelockAdmin nonReentrant {
bytes32 actionKey = _addOracleSignerActionKey(account);
bytes32 actionKey = _removeOracleSignerActionKey(account);
_validateAndClearAction(actionKey, "removeOracleSigner");

oracleStore.removeSigner(account);
Expand Down

0 comments on commit 3ef1161

Please sign in to comment.