Boss/Mod/MoveFundsCommand.cpp: Temporary debugging command to check funds mover.

This commit is contained in:
ZmnSCPxj jxPCSnmZ 2020-10-22 11:38:47 +08:00
parent 7a9fe45655
commit e2d642fb53
4 changed files with 174 additions and 0 deletions

View file

@ -34,6 +34,7 @@
#include"Boss/Mod/ListpeersAnalyzer.hpp"
#include"Boss/Mod/ListpeersAnnouncer.hpp"
#include"Boss/Mod/Manifester.hpp"
#include"Boss/Mod/MoveFundsCommand.hpp"
#include"Boss/Mod/NeedsConnectSolicitor.hpp"
#include"Boss/Mod/NeedsOnchainFundsSwapper.hpp"
#include"Boss/Mod/NewaddrHandler.hpp"
@ -163,6 +164,7 @@ std::shared_ptr<void> all( std::ostream& cout
/* Channel balancing. */
all->install<FundsMover::Main>(bus);
all->install<MoveFundsCommand>(bus);
return all;
}