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.
This commit is contained in:
Andrew Chow
2018-03-05 16:29:37 -05:00
parent f84fed8eb6
commit 0185939be6
5 changed files with 184 additions and 0 deletions
+1
View File
@@ -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>