Skip to content

Commit

Permalink
[fold] clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
dangell7 committed Oct 31, 2024
1 parent dd77e03 commit 6cb23e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/jtx/batch.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,8 @@ class sig
sig(std::vector<Reg> signers_);

template <class AccountType, class... Accounts>
requires std::convertible_to<AccountType, Reg> explicit sig(
AccountType&& a0,
Accounts&&... aN)
requires std::convertible_to<AccountType, Reg>
explicit sig(AccountType&& a0, Accounts&&... aN)
: sig{std::vector<Reg>{
std::forward<AccountType>(a0),
std::forward<Accounts>(aN)...}}
Expand Down Expand Up @@ -166,7 +165,8 @@ class msig
msig(Account const& masterAccount, std::vector<Reg> signers_);

template <class AccountType, class... Accounts>
requires std::convertible_to<AccountType, Reg> explicit msig(
requires std::convertible_to<AccountType, Reg>
explicit msig(
Account const& masterAccount,
AccountType&& a0,
Accounts&&... aN)
Expand Down

0 comments on commit 6cb23e3

Please sign in to comment.