You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #836: Backports + version bump for v0.18.1.6
17f8e74 Bump version to 0.18.1.6 (Steven Roose)
8de91ec Reduce mintxfee to 0.1 sat/vbyte and fallback fee to 2 sat/vb (Steven Roose)
356f25b Some readability improvements in blind.cpp (Steven Roose)
a72d9c6 Switch default bits of hiding to 52 (Gregory Sanders)
32792e3 initpegoutwallet: check for hardened derivation steps early (Gregory Sanders)
ed88521 Create witness outputs for (re)issueasset RPC (Gregory Sanders)
214789b Place the mainchain RPC warmup message in a better place (Steven Roose)
34784a6 Fix claimpegin and createrawpegin support for multiwallet. (Glenn Willen)
Pull request description:
v0.18.1.6 changelog:
- Reduce mintxfee to 0.1 sat/vbyte and fallback fee to 2 sat/vb
- Switch default bits of hiding to 52
- check for hardened derivation steps early in initpegoutwallet
- Create witness outputs for (re)issueasset RPC
- Fix claimpegin and createrawpegin support for multiwallet
- Place the mainchain RPC warmup message in a better place
Backported commits:
```
commit bfb77ad (origin/pr/835, mine/mintxfee, mintxfee)
Author: Steven Roose <[email protected]>
Date: Tue Mar 17 12:47:03 2020 +0000
Reduce mintxfee to 0.1 sat/vbyte and fallback fee to 2 sat/vb
commit 26e5490
Author: Gregory Sanders <[email protected]>
Date: Tue Dec 3 16:14:13 2019 -0500
Switch default bits of hiding to 52
commit a7b41e1 (upstream/pr/829, origin/pr/829, instagibbs/check_hardened)
Author: Gregory Sanders <[email protected]>
Date: Tue Mar 3 09:52:57 2020 -0500
initpegoutwallet: check for hardened derivation steps early
commit 91583b6 (upstream/pr/825, origin/pr/825, instagibbs/witness_issue)
Author: Gregory Sanders <[email protected]>
Date: Mon Feb 24 09:32:21 2020 -0500
Create witness outputs for (re)issueasset RPC
commit c5cb714 (upstream/pr/818, origin/pr/818, mine/msg-warmup, msg-warmup)
Author: Steven Roose <[email protected]>
Date: Tue Feb 18 15:15:52 2020 +0000
Place the mainchain RPC warmup message in a better place
commit fc841c8 (upstream/pr/813, origin/pr/813)
Author: Glenn Willen <[email protected]>
Date: Thu Feb 6 23:08:56 2020 -0800
Fix claimpegin and createrawpegin support for multiwallet.
```
Tree-SHA512: 8ad9f22a26e7ea174f8a001651c2f36b5799578d18187231fb170b000c5d6489cd20f2aea776506e6e604a7d6c981a6b32edd532629ec21851ff5f9e7f95a0ed
Copy file name to clipboardExpand all lines: src/init.cpp
+1-2
Original file line number
Diff line number
Diff line change
@@ -591,7 +591,7 @@ void SetupServerArgs()
591
591
gArgs.AddArg("-feeasset=<hex>", strprintf("Asset ID (hex) for mempool/relay fees (default: %s)", defaultChainParams->GetConsensus().pegged_asset.GetHex()), false, OptionsCategory::CHAINPARAMS);
592
592
gArgs.AddArg("-subsidyasset=<hex>", strprintf("Asset ID (hex) for the block subsidy (default: %s)", defaultChainParams->GetConsensus().pegged_asset.GetHex()), false, OptionsCategory::CHAINPARAMS);
593
593
gArgs.AddArg("-initialreissuancetokens=<n>", "The amount of reissuance tokens created in the genesis block. (default: 0)", false, OptionsCategory::CHAINPARAMS);
594
-
gArgs.AddArg("-ct_bits", strprintf("The default number of hiding bits in a rangeproof. Will be exceeded to cover amounts exceeding the maximum hiding value. (default: %d)", 36), false, OptionsCategory::CHAINPARAMS);
594
+
gArgs.AddArg("-ct_bits", strprintf("The default number of hiding bits in a rangeproof. Will be exceeded to cover amounts exceeding the maximum hiding value. (default: %d)", 52), false, OptionsCategory::CHAINPARAMS);
if (!MainchainRPCCheck(true)) { //Initial check only
1882
1881
const std::string err_msg = "ERROR: elements is set to verify pegins but cannot get valid response from the mainchain daemon. Please check debug.log for more information.\n\nIf you haven't setup a bitcoind please get the latest stable version from https://bitcoincore.org/en/download/ or if you do not need to validate pegins set in your elements configuration validatepegin=0";
1883
1882
// We fail immediately if this node has RPC server enabled
0 commit comments