@hashgraphonline/standards-sdk 0.0.28 → 0.0.29

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.
@@ -31745,8 +31745,7 @@ class HCS11Client {
31745
31745
  throw new Error("No valid authentication method provided");
31746
31746
  }
31747
31747
  const signer = this.auth.signer;
31748
- const result = await transaction.signWithSigner(signer);
31749
- const frozenTransaction = await result.freezeWithSigner(signer);
31748
+ const frozenTransaction = await transaction.freezeWithSigner(signer);
31750
31749
  const response = await frozenTransaction.executeWithSigner(signer);
31751
31750
  const receipt = await response.getReceiptWithSigner(signer);
31752
31751
  if (receipt.status !== Status.Success) {