diff options
author | Andrew Chow <achow101-github@achow101.com> | 2018-03-05 16:29:37 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2018-03-13 12:39:17 -0400 |
commit | 0185939be6f7c5554b864e33657ce610fd434e18 (patch) | |
tree | 638323d15efce6c4768ea6c79d41ab3cd1a50925 /src/wallet/wallet.cpp | |
parent | f84fed8eb6a8518a54a997044e55332dd37e223d (diff) |
Implement Branch and Bound coin selection in a new file
Create a new file for coin selection logic and implement the BnB algorithm in it.
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index a739077a31..e797a63dd8 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -8,6 +8,7 @@ #include <checkpoints.h> #include <chain.h> #include <wallet/coincontrol.h> +#include <wallet/coinselection.h> #include <consensus/consensus.h> #include <consensus/validation.h> #include <fs.h> |