Merge pull request #47 from alexbosworth/decrease-max-routing-fee

cmd/loop: reduce off-chain payment max-fee
This commit is contained in:
Olaoluwa Osuntokun 2019-04-22 15:28:54 -07:00 committed by GitHub
commit 893954e69b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ var (
// the minimum routing fees, which is not very indicative.
maxRoutingFeeBase = btcutil.Amount(10)
maxRoutingFeeRate = int64(50000)
maxRoutingFeeRate = int64(20000)
)
func printRespJSON(resp proto.Message) {