Skip to content

Commit

Permalink
use "" for empty bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
auryn-macmillan committed Jul 19, 2023
1 parent e5c8532 commit 0a646b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/core/Module.sol
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ abstract contract Module is FactoryFriendly, Guardable {
0,
address(0),
payable(0),
new bytes(0),
"",
msg.sender
);
success = IAvatar(target).execTransactionFromModule(
Expand Down Expand Up @@ -107,7 +107,7 @@ abstract contract Module is FactoryFriendly, Guardable {
0,
address(0),
payable(0),
new bytes(0),
"",
msg.sender
);
(success, returnData) = IAvatar(target)
Expand Down

0 comments on commit 0a646b1

Please sign in to comment.