Skip to content

Commit

Permalink
fix: adding store to cap for transferrable (#349)
Browse files Browse the repository at this point in the history
Co-authored-by: gcranju <[email protected]>
  • Loading branch information
gcranju and Itshyphen authored Aug 12, 2024
1 parent f03828f commit 335a346
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/sui/xcall/sources/states/xcall_state.move
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ module xcall::xcall_state {
public fun get_id_cap_xcall(cap:&IDCap):ID {
cap.xcall_id
}
public struct AdminCap has key {
public struct AdminCap has key,store {
id: UID
}

public struct ConnCap has key {
public struct ConnCap has key,store {
id:UID,
xcall_id:ID,
connection_id:String,
Expand Down

0 comments on commit 335a346

Please sign in to comment.