Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/dashmate/templates/core/dash.conf.dot
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ zmqpubrawtxlocksig=tcp://0.0.0.0:29998
masternodeblsprivkey={{=it.core.masternode.operator.privateKey}}
{{?}}

{{? it.network !== 'mainnet'}}
fallbackfee=0.00001
{{?}}

{{? it.network === 'testnet'}}testnet=1

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should also apply to all networks, including local & devnet (not sure about production)

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PastaPastaPasta @thephez should this value be set on mainnet as well?

@knst knst Apr 26, 2023

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From slack to keep history.

this should also apply to all networks, including local & devnet (not sure about production)

No, these changes (backport of bitcoin/bitcoin#16524) do not affect production (mainnet); it was already 0 in the past for mainnet.

As release note says:

  • -fallbackfee was 0 (disabled) by default for the main chain, but 20000 by default for the test chains. Now it is 0 by default for all chains. Testnet and regtest users will have to add fallbackfee=20000 to their configuration if they weren't setting it and they want it to keep working like before.

For dash default value were not 20.000 but 1000. So, you need to specify in config fallbackfee=0.00001 to keep same behavior as before for testnet/regnet/etc.


[test]
{{?? it.network === 'local'}}
regtest=1
Expand Down