ts: Fix accounts iterable (#573)

This commit is contained in:
Armani Ferrante 2021-08-03 16:47:11 -07:00 committed by GitHub
parent 21cc98517a
commit 4e7790eacf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ export class InstructionCoder {
let fieldLayouts = m.args.map((arg: IdlField) => {
return IdlCoder.fieldLayout(
arg,
Array.from([...idl.accounts, ...(idl.types ?? [])])
Array.from([...(idl.accounts ?? []), ...(idl.types ?? [])])
);
});
const name = camelCase(m.name);
@ -101,7 +101,7 @@ export class InstructionCoder {
let fieldLayouts = ix.args.map((arg: IdlField) =>
IdlCoder.fieldLayout(
arg,
Array.from([...idl.accounts, ...(idl.types ?? [])])
Array.from([...(idl.accounts ?? []), ...(idl.types ?? [])])
)
);
const name = camelCase(ix.name);