Code formatting
This commit is contained in:
parent
85e99c994f
commit
c3fc60171a
2 changed files with 11 additions and 13 deletions
|
|
@ -23,18 +23,16 @@ public:
|
||||||
|
|
||||||
class bitcoin_rpc_client {
|
class bitcoin_rpc_client {
|
||||||
public:
|
public:
|
||||||
enum class multi_type
|
enum class multi_type {
|
||||||
{
|
|
||||||
script,
|
script,
|
||||||
address
|
address
|
||||||
};
|
};
|
||||||
struct multi_params
|
struct multi_params {
|
||||||
{
|
multi_params(multi_type _type, const std::string &_address_or_script, const std::string &_label = "") :
|
||||||
multi_params(multi_type _type, const std::string& _address_or_script, const std::string& _label = "")
|
type{_type},
|
||||||
: type{_type}
|
address_or_script{_address_or_script},
|
||||||
, address_or_script{_address_or_script}
|
label{_label} {
|
||||||
, label{_label}
|
}
|
||||||
{}
|
|
||||||
|
|
||||||
multi_type type;
|
multi_type type;
|
||||||
std::string address_or_script;
|
std::string address_or_script;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue