Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 25, 2024
2 parents 2ff1d7a + 061af09 commit 7a9bf5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 50_MultisigWallet/MultisigWallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ contract MultisigWallet {
checkSignatures(txHash, signatures); // 检查签名
// 利用call执行交易,并获取交易结果
(success, ) = to.call{value: value}(data);
require(success , "WTF5004");
//require(success , "WTF5004");
if (success) emit ExecutionSuccess(txHash);
else emit ExecutionFailure(txHash);
}
Expand Down

0 comments on commit 7a9bf5c

Please sign in to comment.