Identifies which coin selection algorithm produced a result.
Declared in <wallet/coinselection.h>
enum class SelectionAlgorithm : uint8_t;
| Name | Description |
|---|---|
BNB | Branch and bound search for a changeless solution. |
KNAPSACK | Knapsack-style approximation, the original fallback algorithm. |
SRD | Single Random Draw selection. |
CG | CoinGrinder deterministic search. |
MANUAL | Coins selected manually by the user. |
| Name | Description |
|---|---|
GetAlgorithmName | Return the human-readable name of a selection algorithm. |