@haven-fi/solauto-sdk 1.0.766 → 1.0.767

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.
@@ -222,7 +222,7 @@ async function getComputeUnitPriceEstimate(umi, tx, prioritySetting, useAccounts
222
222
  return feeEstimate;
223
223
  }
224
224
  async function spamSendTransactionUntilConfirmed(connection, transaction, blockhash, spamInterval = 1500) {
225
- let transactionSignature = null;
225
+ let transactionSignature;
226
226
  const sendTx = async () => {
227
227
  try {
228
228
  const txSignature = await connection.sendRawTransaction(Buffer.from(transaction.serialize()), { skipPreflight: true, maxRetries: 0 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haven-fi/solauto-sdk",
3
- "version": "1.0.766",
3
+ "version": "1.0.767",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "description": "Typescript SDK for the Solauto program on the Solana blockchain",
@@ -387,7 +387,7 @@ async function spamSendTransactionUntilConfirmed(
387
387
  blockhash: BlockhashWithExpiryBlockHeight,
388
388
  spamInterval: number = 1500
389
389
  ): Promise<string> {
390
- let transactionSignature: string | null = null;
390
+ let transactionSignature: string | undefined;
391
391
 
392
392
  const sendTx = async () => {
393
393
  try {