mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-16 13:00:59 +02:00
24 lines
524 B
C++
24 lines
524 B
C++
#ifndef BOSS_MSG_RESPONSEMOVEFUNDS_HPP
|
|
#define BOSS_MSG_RESPONSEMOVEFUNDS_HPP
|
|
|
|
#include"Ln/Amount.hpp"
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::ResponseMoveFunds
|
|
*
|
|
* @brief Response from the corresponding
|
|
* `Boss::Msg::RequestMoveFunds` message.
|
|
*/
|
|
struct ResponseMoveFunds {
|
|
void* requester;
|
|
|
|
/* Actual amount we were able to move before giving up. */
|
|
Ln::Amount amount_moved;
|
|
/* Actual amount spent on fees. */
|
|
Ln::Amount fee_spent;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MSG_RESPONSEMOVEFUNDS_HPP) */
|