File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
target_chains/cosmwasm/tools/src/ci/deployer Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export class DeployerFactory {
3030 return TerraDeployer . fromHostAndMnemonic ( config . host , mnemonic ) ;
3131
3232 case CONFIG_TYPE . INJECTIVE :
33+ // @ts -expect-error - TODO: slight typing differences
3334 return InjectiveDeployer . fromHostAndMnemonic ( config . host , mnemonic ) ;
3435
3536 case CONFIG_TYPE . OSMOSIS :
Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ export class InjectiveDeployer implements Deployer {
189189 await this . signAndBroadcastMsg ( updateAdminMsg ) ;
190190 }
191191
192+ // @ts -expect-error - TODO: slight typing differences in return types
192193 async getContractInfo ( contract : string ) : Promise < ContractInfo > {
193194 const { grpc } = getNetworkInfo ( this . network ) ;
194195 const api = new ChainGrpcWasmApi ( grpc ) ;
@@ -205,7 +206,7 @@ export class InjectiveDeployer implements Deployer {
205206 creator : creator ,
206207 admin : admin ,
207208 initMsg : undefined ,
208- } as ContractInfo ;
209+ } as unknown as ContractInfo ;
209210 }
210211
211212 static fromHostAndMnemonic ( host : InjectiveHost , mnemonic : string ) {
You can’t perform that action at this time.
0 commit comments