@avalabs/avalanchejs
Advanced tools
Comparing version 4.1.0-alpha.3 to 4.1.0-alpha.4
{ | ||
"name": "@avalabs/avalanchejs", | ||
"version": "4.1.0-alpha.3", | ||
"version": "4.1.0-alpha.4", | ||
"description": "Avalanche Platform JS Library", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.cjs", |
@@ -149,5 +149,3 @@ import { testContext } from '../../../fixtures/context'; | ||
testContext.platformFeeConfig.weights, | ||
feeState.price < testContext.platformFeeConfig.minPrice | ||
? testContext.platformFeeConfig.minPrice | ||
: feeState.price, | ||
feeState.price, | ||
); | ||
@@ -154,0 +152,0 @@ |
@@ -65,6 +65,3 @@ import { testContext } from '../../../../../fixtures/context'; | ||
changeOutputs: [], | ||
gasPrice: | ||
feeState.price < testContext.platformFeeConfig.minPrice | ||
? testContext.platformFeeConfig.minPrice | ||
: feeState.price, | ||
gasPrice: feeState.price, | ||
initialComplexity, | ||
@@ -71,0 +68,0 @@ inputs: [], |
@@ -123,6 +123,3 @@ import type { | ||
const gasPrice: bigint = | ||
feeState.price < context.platformFeeConfig.minPrice | ||
? context.platformFeeConfig.minPrice | ||
: feeState.price; | ||
const gasPrice: bigint = feeState.price; | ||
@@ -129,0 +126,0 @@ const spendHelper = new SpendHelper({ |
@@ -204,5 +204,8 @@ /** | ||
return createDimensions( | ||
{ bandwidth, dbRead: 0, dbWrite: 0, compute: 0 }, // TODO: Add compute complexity. | ||
); | ||
return createDimensions({ | ||
bandwidth, | ||
dbRead: 0, | ||
dbWrite: 0, | ||
compute: 0, // TODO: Add compute complexity. | ||
}); | ||
}; | ||
@@ -209,0 +212,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1551403
25844