diff --git a/packages/orchestration/src/examples/sendAnywhere.contract.js b/packages/orchestration/src/examples/sendAnywhere.contract.js index 45e8e0d37b0f..49151c13eb6a 100644 --- a/packages/orchestration/src/examples/sendAnywhere.contract.js +++ b/packages/orchestration/src/examples/sendAnywhere.contract.js @@ -57,7 +57,7 @@ export const start = async (zcf, privateArgs, baggage) => { const findBrandInVBank = async brand => { const assets = await E( E(privateArgs.agoricNames).lookup('vbankAsset'), - // @ts-expect-error XXX heapVowE + // @ts-ignore XXX heapVowE ).values(); const it = assets.find(a => a.brand === brand); it || Fail`brand ${brand} not in agoricNames.vbankAsset`; diff --git a/packages/orchestration/src/exos/local-orchestration-account.js b/packages/orchestration/src/exos/local-orchestration-account.js index a82b4cfe11ce..e8c009773783 100644 --- a/packages/orchestration/src/exos/local-orchestration-account.js +++ b/packages/orchestration/src/exos/local-orchestration-account.js @@ -344,7 +344,7 @@ export const prepareLocalOrchestrationAccountKit = ( delegatorAddress: this.state.address.address, }), ]); - // @ts-expect-error Type 'JsonSafe' is not assignable to type 'MsgUndelegateResponse'. + // @ts-ignore Type 'JsonSafe' is not assignable to type 'MsgUndelegateResponse'. return when(watch(results, this.facets.undelegateWatcher)); }, /**