-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(types): concessions to prepack
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
Check failure on line 60 in packages/orchestration/src/examples/sendAnywhere.contract.js GitHub Actions / lint-rest
|
||
).values(); | ||
const it = assets.find(a => a.brand === brand); | ||
it || Fail`brand ${brand} not in agoricNames.vbankAsset`; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -344,7 +344,7 @@ export const prepareLocalOrchestrationAccountKit = ( | |
delegatorAddress: this.state.address.address, | ||
}), | ||
]); | ||
// @ts-expect-error Type 'JsonSafe<MsgUndelegateResponse & { '@type': "/cosmos.staking.v1beta1.MsgUndelegateResponse"; }>' is not assignable to type 'MsgUndelegateResponse'. | ||
// @ts-ignore Type 'JsonSafe<MsgUndelegateResponse & { '@type': "/cosmos.staking.v1beta1.MsgUndelegateResponse"; }>' is not assignable to type 'MsgUndelegateResponse'. | ||
Check failure on line 347 in packages/orchestration/src/exos/local-orchestration-account.js GitHub Actions / lint-rest
|
||
return when(watch(results, this.facets.undelegateWatcher)); | ||
}, | ||
/** | ||
|