fix: remove old hotfix for web3 inner instructions (#15604)
This commit is contained in:
parent
ccb604f8c3
commit
d679eff3fa
|
@ -178,23 +178,6 @@ 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);
|
const transactionIx = intoTransactionInstruction(tx, ix);
|
||||||
|
|
||||||
if (!transactionIx) {
|
if (!transactionIx) {
|
||||||
|
|
Loading…
Reference in New Issue