mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 01:40:55 +01:00
Ignore mempool testnet api tests for now as unit tests consistently fail (#5547)
This commit is contained in:
parent
1d42de0977
commit
4915350594
@ -17,7 +17,7 @@ class FeeRateProviderTest extends BitcoinSAsyncTest {
|
||||
|
||||
private val proxyParams = Option.empty[Socks5ProxyParams]
|
||||
|
||||
it must "get a valid fee rate from bitcoiner.live" ignore {
|
||||
it must "get a valid fee rate from bitcoiner.live" in {
|
||||
val provider = BitcoinerLiveFeeRateProvider(60, proxyParams)
|
||||
testProvider(provider)
|
||||
}
|
||||
@ -47,18 +47,18 @@ class FeeRateProviderTest extends BitcoinSAsyncTest {
|
||||
testProvider(provider)
|
||||
}
|
||||
|
||||
it must "get a valid fee rate from mempool.space/testnet using the fastest fee target" in {
|
||||
it must "get a valid fee rate from mempool.space/testnet using the fastest fee target" ignore {
|
||||
val provider = MempoolSpaceProvider(FastestFeeTarget, TestNet3, proxyParams)
|
||||
testProvider(provider)
|
||||
}
|
||||
|
||||
it must "get a valid fee rate from mempool.space/testnet using a half hour fee target" in {
|
||||
it must "get a valid fee rate from mempool.space/testnet using a half hour fee target" ignore {
|
||||
val provider =
|
||||
MempoolSpaceProvider(HalfHourFeeTarget, TestNet3, proxyParams)
|
||||
testProvider(provider)
|
||||
}
|
||||
|
||||
it must "get a valid fee rate from mempool.space/testnet using an hour fee target" in {
|
||||
it must "get a valid fee rate from mempool.space/testnet using an hour fee target" ignore {
|
||||
val provider = MempoolSpaceProvider(HourFeeTarget, TestNet3, proxyParams)
|
||||
testProvider(provider)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user