From 9ebdecb332bc3444870ad17cca202ae7abfeee6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kotol?= Date: Thu, 20 Feb 2025 09:26:16 +0100 Subject: [PATCH] ALL-10470 - Fix utxo tests (#1154) --- CHANGELOG.md | 6 ++++++ package.json | 2 +- src/e2e/rpc/utxo/utxo.rpc.spec.ts | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d3f42ca9..362329785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [4.2.48] - 2025.2.20 + +### Fix + +- Fixed tests failing + ## [4.2.47] - 2025.2.19 ### Added diff --git a/package.json b/package.json index c0ccafb40..120166e00 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tatumio/tatum", - "version": "4.2.47", + "version": "4.2.48", "description": "Tatum JS SDK", "author": "Tatum", "repository": "https://github.com/tatumio/tatum-js", diff --git a/src/e2e/rpc/utxo/utxo.rpc.spec.ts b/src/e2e/rpc/utxo/utxo.rpc.spec.ts index c0ed6561e..5c65554c9 100644 --- a/src/e2e/rpc/utxo/utxo.rpc.spec.ts +++ b/src/e2e/rpc/utxo/utxo.rpc.spec.ts @@ -23,7 +23,7 @@ const utxoTestNetworks = [ // apiKey: process.env.V3_API_KEY_TESTNET, // skipEstimateSmartFee: true, // }, - { network: Network.BITCOIN_CASH, type: UtxoNetworkType.MAIN, skipEstimateSmartFee: true }, + // { network: Network.BITCOIN_CASH, type: UtxoNetworkType.MAIN, skipEstimateSmartFee: true }, ] describe.each(utxoTestNetworks)('UTXO E2E Test Suite', (testNetwork) => {