Skip to content

Commit

Permalink
fix: formatting in sui address
Browse files Browse the repository at this point in the history
  • Loading branch information
gcranju committed May 30, 2024
1 parent 2196262 commit 04db715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/sui/xcall/sources/main.move
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ module xcall::main {
let msg_type = reply.msg_type();

let req_id = get_next_req_id(self);
let proxy_request = message_request::create(from, utils::format_sui_address(&to), sn, msg_type, hash::keccak256(&data), protocols);
let proxy_request = message_request::create(from, to, sn, msg_type, hash::keccak256(&data), protocols);
self.add_proxy_request(req_id, proxy_request);
event::emit(CallMessage{from,to, sn, req_id,data});

Expand Down

0 comments on commit 04db715

Please sign in to comment.