@hawksightco/hawk-sdk 1.2.63 → 1.2.65

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.
@@ -498,9 +498,9 @@ class Transaction {
498
498
  const serializedTxn = this.versionedTransaction.serialize();
499
499
  console.log(`serializedTxn:`, serializedTxn.length);
500
500
  console.log(`this.MAX_TX_SIZE:`, this.MAX_TX_SIZE);
501
- if (serializedTxn.length <= this.MAX_TX_SIZE) {
502
- return [null, null];
503
- }
501
+ // if (serializedTxn.length <= this.MAX_TX_SIZE) {
502
+ // return [null, null];
503
+ // }
504
504
  const pubkeys = this.listPubkeys();
505
505
  const pubkeysNotInAlt = this.pubkeysNotInAlt(pubkeys);
506
506
  if (pubkeysNotInAlt.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawksightco/hawk-sdk",
3
- "version": "1.2.63",
3
+ "version": "1.2.65",
4
4
  "description": "Hawksight v2 SDK",
5
5
  "main": "dist/src/index.js",
6
6
  "repository": "https://github.com/ghabxph/hawk-api-client.git",