UNPKG

257 BJavaScriptView Raw
1import { u8aToU8a } from '@polkadot/util';
2export function findCall(registry, callIndex) {
3 return registry.findMetaCall(u8aToU8a(callIndex));
4}
5export function findError(registry, errorIndex) {
6 return registry.findMetaError(u8aToU8a(errorIndex));
7}