From 4f5392eb74f654a87065db8a149b2c47edbf8433 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Thu, 11 Mar 2021 22:18:02 +0900 Subject: [PATCH] Fix test --- BTCPayServer.Tests/GreenfieldAPITests.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BTCPayServer.Tests/GreenfieldAPITests.cs b/BTCPayServer.Tests/GreenfieldAPITests.cs index 92b3605fa..ec2624c6b 100644 --- a/BTCPayServer.Tests/GreenfieldAPITests.cs +++ b/BTCPayServer.Tests/GreenfieldAPITests.cs @@ -1560,6 +1560,9 @@ namespace BTCPayServer.Tests tx = await client.CreateOnChainTransactionButDoNotBroadcast(walletId.StoreId, walletId.CryptoCode, createTxRequest, tester.ExplorerClient.Network.NBitcoinNetwork); }); + + + createTxRequest.FeeRate = new FeeRate(5.0m); createTxRequest.Destinations[0].Amount = 0.001m; createTxRequest.Destinations[0].Destination = nodeAddress.ToString();