mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-14 12:43:19 +02:00
21 lines
465 B
C++
21 lines
465 B
C++
#ifndef BOSS_MSG_REQUESTCHANNELCREATION_HPP
|
|
#define BOSS_MSG_REQUESTCHANNELCREATION_HPP
|
|
|
|
#include"Ln/Amount.hpp"
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::RequestChannelCreation
|
|
*
|
|
* @brief emitted when we think it is a good
|
|
* idea to create channels now.
|
|
* It contains the total amount of bitcoins
|
|
* to target to put into channels.
|
|
*/
|
|
struct RequestChannelCreation {
|
|
Ln::Amount amount;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* BOSS_MSG_REQUESTCHANNELCREATION_HPP */
|