Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
Update error message for invalid emitter address
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNeshi committed Aug 1, 2023
1 parent 08fb85c commit 70e0506
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract EndowmentMultiSig is MultiSigGeneric {
bool _requireExecution,
uint256 _transactionExpiry
) public initializer {
require(Validator.addressChecker(_emitter), "Invalid Address");
require(Validator.addressChecker(_emitter), "Invalid Emitter Address");
ENDOWMENT_ID = _endowmentId;
EMITTER_ADDRESS = _emitter;
super.initialize(_owners, _required, _requireExecution, _transactionExpiry);
Expand Down

0 comments on commit 70e0506

Please sign in to comment.