You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NBitcoin/RPC/RPCClient.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2029,7 +2029,7 @@ public async Task<BumpResponse> BumpFeeAsync(uint256 txid, CancellationToken can
2029
2029
/// <param name="estimateMode">Whether to return a more conservative estimate which also satisfies a longer history. A conservative estimate potentially returns a higher feerate and is more likely to be sufficient for the desired target, but is not as responsive to short term drops in the prevailing fee market.</param>
2030
2030
/// <returns>The estimated fee rate, block number where estimate was found</returns>
2031
2031
/// <exception cref="NoEstimationException">The Fee rate couldn't be estimated because of insufficient data from Bitcoin Core</exception>
@@ -2041,7 +2041,7 @@ public EstimateSmartFeeResponse EstimateSmartFee(int confirmationTarget, Estimat
2041
2041
/// <param name="confirmationTarget">Confirmation target in blocks (1 - 1008)</param>
2042
2042
/// <param name="estimateMode">Whether to return a more conservative estimate which also satisfies a longer history. A conservative estimate potentially returns a higher feerate and is more likely to be sufficient for the desired target, but is not as responsive to short term drops in the prevailing fee market.</param>
2043
2043
/// <returns>The estimated fee rate, block number where estimate was found or null</returns>
@@ -2053,7 +2053,7 @@ public async Task<EstimateSmartFeeResponse> TryEstimateSmartFeeAsync(int confirm
2053
2053
/// <param name="confirmationTarget">Confirmation target in blocks (1 - 1008)</param>
2054
2054
/// <param name="estimateMode">Whether to return a more conservative estimate which also satisfies a longer history. A conservative estimate potentially returns a higher feerate and is more likely to be sufficient for the desired target, but is not as responsive to short term drops in the prevailing fee market.</param>
2055
2055
/// <returns>The estimated fee rate, block number where estimate was found or null</returns>
@@ -2066,7 +2066,7 @@ public EstimateSmartFeeResponse TryEstimateSmartFee(int confirmationTarget, Esti
2066
2066
/// <param name="estimateMode">Whether to return a more conservative estimate which also satisfies a longer history. A conservative estimate potentially returns a higher feerate and is more likely to be sufficient for the desired target, but is not as responsive to short term drops in the prevailing fee market.</param>
2067
2067
/// <returns>The estimated fee rate, block number where estimate was found</returns>
2068
2068
/// <exception cref="NoEstimationException">when fee couldn't be estimated</exception>
0 commit comments