Skip to content

Commit

Permalink
fix: minor wording issue
Browse files Browse the repository at this point in the history
  • Loading branch information
UrAvgDeveloper committed Dec 28, 2022
1 parent c178a69 commit a849e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/Shortfall/Shortfall.sol
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ contract Shortfall is Ownable2StepUpgradeable, ReentrancyGuardUpgradeable {
* @param _convertibleBaseAsset Address of the asset.
*/
function setConvertableBaseAsset(address _convertibleBaseAsset) external onlyOwner {
require(_convertibleBaseAsset != address(0), "Risk Fund: Asset address invalid");
require(_convertibleBaseAsset != address(0), "Shortfall: Asset address invalid");
address oldBaseAsset = convertibleBaseAsset;
convertibleBaseAsset = _convertibleBaseAsset;
emit ConvertableBaseAssetUpdated(oldBaseAsset, _convertibleBaseAsset);
Expand Down

0 comments on commit a849e40

Please sign in to comment.