X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fcoincontrol.h;h=a64a0ec3c85364ce573b6d598ddd6b9dcce48930;hp=236b586552177fd355652ec3ee3742cdd80ca68e;hb=1ebe5b92ef18395cdae9b88fc38b0ed6166c3243;hpb=62b3df9c02e86432aa73f8b475900946bb348816 diff --git a/src/coincontrol.h b/src/coincontrol.h index 236b586..a64a0ec 100644 --- a/src/coincontrol.h +++ b/src/coincontrol.h @@ -1,11 +1,13 @@ #ifndef COINCONTROL_H #define COINCONTROL_H +#include "base58.h" + /** Coin Control Features. */ class CCoinControl { public: - CTxDestination destChange; + CBitcoinAddress destChange; CCoinControl() { @@ -14,7 +16,7 @@ public: void SetNull() { - destChange = CNoDestination(); + destChange = CBitcoinAddress(); setSelected.clear(); }