Skip to content

Commit a6c709f

Browse files
committed
docs: updated readme and rustdoc
1 parent 9321ad3 commit a6c709f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ This contract provides two ways to create an interchain account:
2727
/// The message to instantiate the ICA controller contract.
2828
#[cw_serde]
2929
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.
3232
#[serde(skip_serializing_if = "Option::is_none")]
33-
pub admin: Option<String>,
33+
pub owner: Option<String>,
3434
/// The options to initialize the IBC channel upon contract instantiation.
3535
/// If not specified, the IBC channel is not initialized, and the relayer must.
3636
#[serde(skip_serializing_if = "Option::is_none")]

src/types/msg.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ use cosmwasm_std::Binary;
88
/// The message to instantiate the ICA controller contract.
99
#[cw_serde]
1010
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.
1313
#[serde(skip_serializing_if = "Option::is_none")]
1414
pub owner: Option<String>,
1515
/// The options to initialize the IBC channel upon contract instantiation.

0 commit comments

Comments
 (0)