Remove extra error handling (not needed with cerc-io/laconicd#121)
All checks were successful
Tests / sdk_tests (pull_request) Successful in 3m44s

This commit is contained in:
Thomas E Lackey 2023-11-28 17:22:01 -06:00
parent d3fc1658c9
commit db57b09717

View File

@ -44,18 +44,9 @@ export const handler = async (argv: Arguments) => {
const registry = new Registry(gqlEndpoint, restEndpoint, chainId);
let result: any[];
try {
result = await registry.queryRecords({...filters, type, name}, all as boolean);
} catch (e) {
// https://git.vdb.to/cerc-io/laconicd/issues/118
if (Array.isArray(e) && (e as []).length && e[0].message?.includes("store doesn't have key")) {
result = [];
} else {
throw e;
}
}
let result = await registry.queryRecords({...filters, type, name}, all as boolean);
// Apply ex post filters.
if (bondId) {
result = result.filter(v => v.bondId === bondId);
}