Skip to content

Commit

Permalink
Merge pull request #358 from icon-project/fix/execute-call-persistent
Browse files Browse the repository at this point in the history
fix: call executed event added in persistent type
  • Loading branch information
gcranju authored Sep 12, 2024
2 parents 7607b6f + 4bbfe3e commit 8c9fc87
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 8c9fc87

Please sign in to comment.