@lavarage/sdk 6.8.7 → 6.8.8
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.
- package/dist/index.js +1 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -4
- package/dist/index.mjs.map +1 -1
- package/lending.ts +1 -4
- package/package.json +1 -1
package/lending.ts
CHANGED
|
@@ -372,10 +372,7 @@ export async function createOffer(
|
|
|
372
372
|
|
|
373
373
|
if (nodeWalletSigner) {
|
|
374
374
|
const transaction = new VersionedTransaction(messageV0);
|
|
375
|
-
transaction.
|
|
376
|
-
nodeWalletSigner.publicKey,
|
|
377
|
-
nodeWalletSigner.secretKey
|
|
378
|
-
);
|
|
375
|
+
transaction.sign([nodeWalletSigner]);
|
|
379
376
|
return transaction;
|
|
380
377
|
}
|
|
381
378
|
|