rpcserver: properly limit min channel size

This commit is contained in:
Olaoluwa Osuntokun 2017-01-17 13:18:28 -08:00
parent 7312565644
commit 440cf6f956
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ func (r *rpcServer) OpenChannel(in *lnrpc.OpenChannelRequest,
// channnel size that allows us to safely sit above the dust threshold
// after fees are applied
// TODO(roasbeef): remove after dynamic fees are in
if localFundingAmt > minChannelSize {
if localFundingAmt < minChannelSize {
return fmt.Errorf("channel is too small, the minimum channel "+
"size is: %v (6k sat)", minChannelSize)
}