Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion NTumbleBit/ClassicTumbler/Server/TumblerConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public string GetDefaultConfigurationFile(Network network)

builder.AppendLine("####Tumbler settings####");
builder.AppendLine("## The fees in BTC");
builder.AppendLine("#tumbler.fee=0.001");
builder.AppendLine("#tumbler.fee=0.005");
builder.AppendLine("## The cycle used can be one of: " + string.Join(",", new StandardCycles(Network).ToEnumerable().Select(c => c.FriendlyName)));
builder.AppendLine("#cycle=shorty2x");

Expand Down
4 changes: 2 additions & 2 deletions NTumbleBit/ClassicTumbler/StandardCycles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public StandardCycles(Consensus consensus, bool debug)
{
_Debug = debug;

_Shorty = new StandardCycle()
_Shorty = new StandardCycle()
{
FriendlyName = "Shorty",
Consensus = consensus,
Expand Down Expand Up @@ -116,7 +116,7 @@ public StandardCycles(Consensus consensus, bool debug)
{
FriendlyName = "Kotori",
Consensus = consensus,
Denomination = Money.Coins(0.001m),
Denomination = Money.Coins(0.01m),
Generator = new OverlappedCycleGenerator()
{
RegistrationOverlap = 1,
Expand Down