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
* large = Sort by and use largest UTXO first. Lowest fee, but reveals your largest UTXO's.
22
-
* small = Sort by and use smallest UTXO first. Higher fee, but hides your largest UTXO's.
23
-
* consolidate = Use all available UTXO's regardless of the amount being sent. Preferable to use this method when fees are low in order to reduce fees in future transactions.
Copy file name to clipboardExpand all lines: src/utils/i18n/locales/en/settings.json
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -427,23 +427,35 @@
427
427
"string": "Autopilot Mode"
428
428
},
429
429
"cs_max": {
430
-
"string": "More Private"
430
+
"string": "Smallest First"
431
431
},
432
432
"cs_max_description": {
433
-
"string": "Sort by and use smallest UTXO first. Higher fee, but hides your largest UTXO's."
433
+
"string": "Sort by and use smallest UTXO first. Potentially higher fee, but hides your largest UTXO's."
434
434
},
435
435
"cs_min": {
436
-
"string": "Lowest Fee"
436
+
"string": "Largest First"
437
437
},
438
438
"cs_min_description": {
439
-
"string": "Sort by and use largest UTXO first. Lowest fee, but reveals your largest UTXO's."
439
+
"string": "Sort by and use largest UTXO first. Potentially lower fee, but reveals your largest UTXO's."
440
440
},
441
441
"cs_consolidate": {
442
442
"string": "Consolidate"
443
443
},
444
444
"cs_consolidate_description": {
445
445
"string": "Use all available UTXO's regardless of the amount being sent. Use this method when fees are low in order to reduce fees in future transactions."
446
446
},
447
+
"cs_first_in_first_out": {
448
+
"string": "First-In First-Out"
449
+
},
450
+
"cs_first_in_first_out_description": {
451
+
"string": "Use older UTXO's first (by block height)."
452
+
},
453
+
"cs_last_in_last_out": {
454
+
"string": "Last-In Last-Out"
455
+
},
456
+
"cs_last_in_last_out_description": {
457
+
"string": "Use newer UTXO's first (by block height)."
0 commit comments