Skip to content

Commit

Permalink
fix: call executed event added in persistent type
Browse files Browse the repository at this point in the history
  • Loading branch information
Itshyphen committed Sep 12, 2024
1 parent 7607b6f commit 4bbfe3e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions contracts/evm/contracts/xcall/CallService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ contract CallService is IBSH, ICallService, IFeeManage, Initializable {
tryExecuteCall(_reqId, dapp, req.from, _data, protocols);
} else if (req.messageType == Types.PERSISTENT_MESSAGE_TYPE) {
this.executeMessage(dapp, req.from, _data, protocols);
emit CallExecuted(_reqId, Types.CS_RESP_SUCCESS, "");
} else if (req.messageType == Types.CALL_MESSAGE_ROLLBACK_TYPE) {
replyState = req;
int256 code = tryExecuteCall(
Expand Down

0 comments on commit 4bbfe3e

Please sign in to comment.