Skip to content

Commit

Permalink
Doc comments added
Browse files Browse the repository at this point in the history
  • Loading branch information
hashedone committed Jul 28, 2021
1 parent c4c0f05 commit d5a2a3a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/multi-test/src/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,15 @@ pub const NAMESPACE_WASM: &[u8] = b"wasm";
/// interface.
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
struct ContractData {
/// Identifier of stored contract code
pub code_id: usize,
/// Address of node who initially instantiated the contract
pub creator: Addr,
/// Optional address of node who can execute migrations
pub admin: Option<Addr>,
/// Optional metadata passed while contract instantiation
pub label: String,
/// Blockchain height in the moment of instanciating the contract
pub created: u64,
}

Expand Down

0 comments on commit d5a2a3a

Please sign in to comment.