Skip to content

Commit

Permalink
feat: instantiate contract default to '-' instead of undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
emidev98 committed Feb 5, 2024
1 parent b653d3f commit a9eba16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/wasm/msgs/MsgInstantiateContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class MsgInstantiateContract extends JSONSerializable<
public code_id: number,
public init_msg: object | string,
init_coins: Coins.Input = {},
public label?: string
public label: string = '-'
) {
super();
this.init_coins = new Coins(init_coins);
Expand Down

0 comments on commit a9eba16

Please sign in to comment.