fix: avoid packaging bpf-sdk binaries that the user downloads
This commit is contained in:
@ -168,11 +168,13 @@ 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 => {
|
||||
|
Reference in New Issue
Block a user