@solana/rpc-graphql 2.0.0-experimental.5b8e43b → 2.0.0-experimental.5e737f9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -274,7 +274,8 @@ async function loadTransaction(rpc, { signature, ...config }) {
274
274
  return null;
275
275
  }
276
276
  if (encoding !== "jsonParsed") {
277
- const transactionJsonParsed = await rpc.getTransaction(signature, config).send().catch((e) => {
277
+ const jsonParsedConfig = { ...config, encoding: "jsonParsed" };
278
+ const transactionJsonParsed = await rpc.getTransaction(signature, jsonParsedConfig).send().catch((e) => {
278
279
  throw e;
279
280
  });
280
281
  if (transactionJsonParsed === null) {