mirror of
https://github.com/ACINQ/eclair.git
synced 2025-02-23 14:40:34 +01:00
Reduce default fees (#267)
* set more reasonable defaults for routing fees * removed useless pluginManagement entry
This commit is contained in:
parent
d0da3d3899
commit
4acfed364e
2 changed files with 3 additions and 8 deletions
|
@ -62,8 +62,8 @@ eclair {
|
||||||
mindepth-blocks = 2
|
mindepth-blocks = 2
|
||||||
expiry-delta-blocks = 144
|
expiry-delta-blocks = 144
|
||||||
|
|
||||||
fee-base-msat = 546000
|
fee-base-msat = 10000
|
||||||
fee-proportional-millionths = 10
|
fee-proportional-millionths = 100 // fee charged per transferred satoshi in millionths of a satoshi (100 = 0.1%)
|
||||||
|
|
||||||
// maximum local vs remote feerate mismatch; 1.0 means 100%
|
// maximum local vs remote feerate mismatch; 1.0 means 100%
|
||||||
// actual check is abs((local feerate - remote fee rate) / (local fee rate + remote fee rate)/2) > fee rate mismatch
|
// actual check is abs((local feerate - remote fee rate) / (local fee rate + remote fee rate)/2) > fee rate mismatch
|
||||||
|
|
7
pom.xml
7
pom.xml
|
@ -67,11 +67,6 @@
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<version>3.0.2</version>
|
<version>3.0.2</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<groupId>pl.project13.maven</groupId>
|
|
||||||
<artifactId>git-commit-id-plugin</artifactId>
|
|
||||||
<version>2.2.3</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.github.chrisdchristo</groupId>
|
<groupId>com.github.chrisdchristo</groupId>
|
||||||
<artifactId>capsule-maven-plugin</artifactId>
|
<artifactId>capsule-maven-plugin</artifactId>
|
||||||
|
@ -88,7 +83,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>pl.project13.maven</groupId>
|
<groupId>pl.project13.maven</groupId>
|
||||||
<artifactId>git-commit-id-plugin</artifactId>
|
<artifactId>git-commit-id-plugin</artifactId>
|
||||||
<version>2.2.2</version>
|
<version>2.2.3</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|
Loading…
Add table
Reference in a new issue