@solana/rpc-graphql 2.0.0-experimental.8de8e11 → 2.0.0-experimental.944fbc3

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.
@@ -267,7 +267,8 @@ async function loadTransaction(rpc, { signature, ...config }) {
267
267
  return null;
268
268
  }
269
269
  if (encoding !== "jsonParsed") {
270
- const transactionJsonParsed = await rpc.getTransaction(signature, config).send().catch((e) => {
270
+ const jsonParsedConfig = { ...config, encoding: "jsonParsed" };
271
+ const transactionJsonParsed = await rpc.getTransaction(signature, jsonParsedConfig).send().catch((e) => {
271
272
  throw e;
272
273
  });
273
274
  if (transactionJsonParsed === null) {