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 {
|
||||
public:
|
||||
enum class multi_type
|
||||
{
|
||||
enum class multi_type {
|
||||
script,
|
||||
address
|
||||
};
|
||||
struct multi_params
|
||||
{
|
||||
multi_params(multi_type _type, const std::string& _address_or_script, const std::string& _label = "")
|
||||
: type{_type}
|
||||
, address_or_script{_address_or_script}
|
||||
, label{_label}
|
||||
{}
|
||||
struct multi_params {
|
||||
multi_params(multi_type _type, const std::string &_address_or_script, const std::string &_label = "") :
|
||||
type{_type},
|
||||
address_or_script{_address_or_script},
|
||||
label{_label} {
|
||||
}
|
||||
|
||||
multi_type type;
|
||||
std::string address_or_script;
|
||||
|
|
|
|||
Loading…
Reference in a new issue