@reflectmoney/oracle.ts 3.2.3 → 3.2.4
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -284,7 +284,9 @@ class Doppler {
|
|
|
284
284
|
builder = builder.withUnitPrice(unitPrice);
|
|
285
285
|
}
|
|
286
286
|
const transaction = builder.build(recentBlockhash.blockhash);
|
|
287
|
-
const signature = yield (0, web3_js_1.sendAndConfirmTransaction)(this.connection, transaction, [this.admin]
|
|
287
|
+
const signature = yield (0, web3_js_1.sendAndConfirmTransaction)(this.connection, transaction, [this.admin], {
|
|
288
|
+
skipPreflight: true
|
|
289
|
+
});
|
|
288
290
|
return signature;
|
|
289
291
|
});
|
|
290
292
|
}
|