@hawksightco/hawk-sdk 0.0.41 → 0.0.42
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.
|
@@ -173,7 +173,7 @@ class Transaction {
|
|
|
173
173
|
let totalPriorityFeeLamports = new bn_js_1.BN(estimate).mul(new bn_js_1.BN(computeUnitLimit)).div(new bn_js_1.BN(1000000)).toNumber();
|
|
174
174
|
// If maxPriorityFee is defined and it is less than the total calculated fee, cap it
|
|
175
175
|
if (maxPriorityFeeLamports !== undefined && totalPriorityFeeLamports > maxPriorityFeeLamports) {
|
|
176
|
-
totalPriorityFeeLamports = maxPriorityFeeLamports;
|
|
176
|
+
totalPriorityFeeLamports = maxPriorityFeeLamports - 5000;
|
|
177
177
|
}
|
|
178
178
|
// Convert the total priority fee back to microLamports per compute unit
|
|
179
179
|
const priorityFeePerUnitMicroLamports = new bn_js_1.BN(totalPriorityFeeLamports).mul(new bn_js_1.BN(1000000)).div(new bn_js_1.BN(computeUnitLimit)).toNumber();
|