Skip to content

Commit

Permalink
chore: change parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
clarinal12 committed Jul 11, 2022
1 parent 133bc8a commit 6a83a9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion abis/ICover.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
{
"indexed": true,
"internalType": "address",
"name": "stoppedBy",
"name": "updatedBy",
"type": "address"
},
{
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ICover.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface ICover is IMember {
event ProductCreated(bytes32 indexed coverKey, bytes32 productKey, bytes32 info, bool requiresWhitelist, uint256[] values);
event CoverUpdated(bytes32 indexed coverKey, bytes32 info);
event ProductUpdated(bytes32 indexed coverKey, bytes32 productKey, bytes32 info, uint256[] values);
event ProductStateUpdated(bytes32 indexed coverKey, bytes32 indexed productKey, address indexed stoppedBy, bool status, string reason);
event ProductStateUpdated(bytes32 indexed coverKey, bytes32 indexed productKey, address indexed updatedBy, bool status, string reason);
event VaultDeployed(bytes32 indexed coverKey, address vault);

event CoverCreatorWhitelistUpdated(address account, bool status);
Expand Down
2 changes: 1 addition & 1 deletion docs/ICover.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ event CoverCreated(bytes32 indexed coverKey, bytes32 info, string tokenName, s
event ProductCreated(bytes32 indexed coverKey, bytes32 productKey, bytes32 info, bool requiresWhitelist, uint256[] values);
event CoverUpdated(bytes32 indexed coverKey, bytes32 info);
event ProductUpdated(bytes32 indexed coverKey, bytes32 productKey, bytes32 info, uint256[] values);
event ProductStateUpdated(bytes32 indexed coverKey, bytes32 indexed productKey, address indexed stoppedBy, bool status, string reason);
event ProductStateUpdated(bytes32 indexed coverKey, bytes32 indexed productKey, address indexed updatedBy, bool status, string reason);
event VaultDeployed(bytes32 indexed coverKey, address vault);
event CoverCreatorWhitelistUpdated(address account, bool status);
event CoverUserWhitelistUpdated(bytes32 indexed coverKey, bytes32 indexed productKey, address indexed account, bool status);
Expand Down

0 comments on commit 6a83a9c

Please sign in to comment.