File tree Expand file tree Collapse file tree
include/bitcoin/system/chain/json Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,27 +45,27 @@ struct wrapped
4545template <class Type >
4646inline auto native (const Type& value) NOEXCEPT
4747{
48- return wrapped<native_tag, Type>{value};
48+ return wrapped<native_tag, Type>{ value };
4949}
5050template <class Type >
5151inline auto bitcoind (const Type& value) NOEXCEPT
5252{
53- return wrapped<bitcoind_tag, Type>{value};
53+ return wrapped<bitcoind_tag, Type>{ value };
5454}
5555template <class Type >
5656inline auto bitcoind_hashed (const Type& value) NOEXCEPT
5757{
58- return wrapped<bitcoind_hashed_tag, Type>{value};
58+ return wrapped<bitcoind_hashed_tag, Type>{ value };
5959}
6060template <class Type >
6161inline auto bitcoind_verbose (const Type& value) NOEXCEPT
6262{
63- return wrapped<bitcoind_verbose_tag, Type>{value};
63+ return wrapped<bitcoind_verbose_tag, Type>{ value };
6464}
6565template <class Type >
6666inline auto bitcoind_embedded (const Type& value) NOEXCEPT
6767{
68- return wrapped<bitcoind_embedded_tag, Type>{value};
68+ return wrapped<bitcoind_embedded_tag, Type>{ value };
6969}
7070
7171// / json aliases
You can’t perform that action at this time.
0 commit comments