hotfix: manually coerce some inner instructions (#13963)

This commit is contained in:
Josh 2020-12-04 14:47:17 -08:00 committed by GitHub
parent ed15ce0bbe
commit 08674b8388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

View File

@ -572,6 +572,23 @@ function renderInstructionCard({
}
}
// TODO: There is a bug in web3, where inner instructions
// aren't getting coerced. This is a temporary fix.
if (typeof ix.programId === "string") {
ix.programId = new PublicKey(ix.programId);
}
ix.accounts = ix.accounts.map((account) => {
if (typeof account === "string") {
return new PublicKey(account);
}
return account;
});
// TODO: End hotfix
const transactionIx = intoTransactionInstruction(tx, ix);
if (!transactionIx) {