File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ This contract provides two ways to create an interchain account:
27
27
/// The message to instantiate the ICA controller contract.
28
28
#[cw_serde]
29
29
pub struct InstantiateMsg {
30
- /// The address of the admin of the ICA application.
31
- /// If not specified, the sender is the admin .
30
+ /// The address of the owner of the ICA application.
31
+ /// If not specified, the sender is the owner .
32
32
#[serde(skip_serializing_if = "Option::is_none")]
33
- pub admin : Option<String>,
33
+ pub owner : Option<String>,
34
34
/// The options to initialize the IBC channel upon contract instantiation.
35
35
/// If not specified, the IBC channel is not initialized, and the relayer must.
36
36
#[serde(skip_serializing_if = "Option::is_none")]
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ use cosmwasm_std::Binary;
8
8
/// The message to instantiate the ICA controller contract.
9
9
#[ cw_serde]
10
10
pub struct InstantiateMsg {
11
- /// The address of the admin of the ICA application.
12
- /// If not specified, the sender is the admin .
11
+ /// The address of the owner of the ICA application.
12
+ /// If not specified, the sender is the owner .
13
13
#[ serde( skip_serializing_if = "Option::is_none" ) ]
14
14
pub owner : Option < String > ,
15
15
/// The options to initialize the IBC channel upon contract instantiation.
You can’t perform that action at this time.
0 commit comments