chore: update eslint-plugin-jest

This commit is contained in:
Michael Vines
2018-12-02 10:31:50 -08:00
parent e17d00d4cd
commit bfefb2403c
3 changed files with 9 additions and 11 deletions

View File

@ -168,13 +168,11 @@ export class Transaction {
programIds.push(programId);
}
instruction.keys
.map(key => key.toString())
.forEach(key => {
if (!keys.includes(key)) {
keys.push(key);
}
});
instruction.keys.map(key => key.toString()).forEach(key => {
if (!keys.includes(key)) {
keys.push(key);
}
});
});
const instructions = this.instructions.map(instruction => {