rpcserver: properly limit min channel size
This commit is contained in:
parent
7312565644
commit
440cf6f956
@ -253,7 +253,7 @@ func (r *rpcServer) OpenChannel(in *lnrpc.OpenChannelRequest,
|
|||||||
// channnel size that allows us to safely sit above the dust threshold
|
// channnel size that allows us to safely sit above the dust threshold
|
||||||
// after fees are applied
|
// after fees are applied
|
||||||
// TODO(roasbeef): remove after dynamic fees are in
|
// TODO(roasbeef): remove after dynamic fees are in
|
||||||
if localFundingAmt > minChannelSize {
|
if localFundingAmt < minChannelSize {
|
||||||
return fmt.Errorf("channel is too small, the minimum channel "+
|
return fmt.Errorf("channel is too small, the minimum channel "+
|
||||||
"size is: %v (6k sat)", minChannelSize)
|
"size is: %v (6k sat)", minChannelSize)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user