Skip to content

Commit 4bd78c9

Browse files
committed
Increase the FallbackFee for City Chain
- To ensure that sweep works, the FallbackFee must be higher.
1 parent ff47e3a commit 4bd78c9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Networks/Blockcore.Networks.City/Networks/CityMain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public CityMain()
6060
MaxTipAge = 2 * 60 * 60;
6161
MinTxFee = 10000;
6262
MaxTxFee = Money.Coins(1).Satoshi;
63-
FallbackFee = 10000;
63+
FallbackFee = 15000;
6464
MinRelayTxFee = 10000;
6565
MaxTimeOffsetSeconds = 25 * 60;
6666
DefaultBanTimeSeconds = 16000; // 500 (MaxReorg) * 64 (TargetSpacing) / 2 = 4 hours, 26 minutes and 40 seconds

src/Node/Blockcore.Node/Properties/launchSettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
},
3131
"CITY (MAIN)": {
3232
"commandName": "Project",
33-
"commandLineArgs": "--chain=CITY -server -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -enableauth=1"
33+
"commandLineArgs": "--chain=CITY -server -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -enableauth=0"
3434
},
3535
"CITY (MAIN/LOCAL)": {
3636
"commandName": "Project",
37-
"commandLineArgs": "--chain=CITY -server -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -datadir=nodedata -enableauth=1"
37+
"commandLineArgs": "--chain=CITY -server -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -datadir=nodedata -enableauth=0"
3838
},
3939
"CITY (TEST/LOCAL)": {
4040
"commandName": "Project",

0 commit comments

Comments
 (0)