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
Respect --changeaccount with unmixed ticket autobuying
There is currently no way to set the change account used by individual split
transactions when running the ticket autobuyer without mixing, as this account
was never looked up from the config. Allow the change account to be specified
with unmixed ticket buying, defaulting to the purchase account if it is unset.
The change account remains required if mixing is enabled.
Copy file name to clipboardExpand all lines: config.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,7 @@ type config struct {
174
174
mixedAccountstring
175
175
mixedBranchuint32
176
176
TicketSplitAccountstring`long:"ticketsplitaccount" description:"Account to derive fresh addresses from for mixed ticket splits; uses mixedaccount if unset"`
177
-
ChangeAccountstring`long:"changeaccount" description:"Account used to derive unmixed CoinJoin outputs in CoinShuffle++ protocol"`
177
+
ChangeAccountstring`long:"changeaccount" description:"Account to send change when ticket autobuying or mixing; required when mixing"`
178
178
MixChangebool`long:"mixchange" description:"Use CoinShuffle++ to mix change account outputs into mix account"`
179
179
MixSplitLimitint`long:"mixsplitlimit" description:"Maximum concurrent mixes for any change amount"`
0 commit comments