Skip to content

Commit e8beb8e

Browse files
committed
DO NOT MERGE - Remove dust limit check
1 parent c1f1e5f commit e8beb8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/DotNetLightning.Core/Channel/ChannelError.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,8 @@ module internal OpenChannelMsgValidation =
380380
check
381381
ourChannelReserve (<) msg.DustLimitSatoshis
382382
"Dust limit too high for our channel reserve. our channel reserve is: %A . received dust_limit is: %A"
383-
Validation.ofResult(check1) *^> check2 *^> check3
383+
//Validation.ofResult(check1) *^> check2 *^> check3
384+
Validation.ofResult(check3)
384385

385386
let checkIfFundersAmountSufficient (feeEst: IFeeEstimator) msg =
386387
let fundersAmount = LNMoney.Satoshis(msg.FundingSatoshis.Satoshi) - msg.PushMSat

0 commit comments

Comments
 (0)