//------------------------------------------------------------------------------ /* This file is part of rippled: https://github.com/ripple/rippled Copyright (c) 2012, 2013 Ripple Labs Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ //============================================================================== #ifndef RIPPLE_TEST_JTX_MULTISIGN_H_INCLUDED #define RIPPLE_TEST_JTX_MULTISIGN_H_INCLUDED #include #include #include #include #include namespace ripple { namespace test { namespace jtx { /** A signer in a SignerList */ struct signer { std::uint32_t weight; Account account; signer(Account account_, std::uint32_t weight_ = 1) : weight(weight_), account(std::move(account_)) { } }; Json::Value signers( Account const& account, std::uint32_t quorum, std::vector const& v); /** Remove a signer list. */ Json::Value signers(Account const& account, none_t); //------------------------------------------------------------------------------ /** Set a multisignature on a JTx. */ class msig { public: struct Reg { Account acct; Account sig; Reg(Account const& masterSig) : acct(masterSig), sig(masterSig) { } Reg(Account const& acct_, Account const& regularSig) : acct(acct_), sig(regularSig) { } Reg(char const* masterSig) : acct(masterSig), sig(masterSig) { } Reg(char const* acct_, char const* regularSig) : acct(acct_), sig(regularSig) { } bool operator<(Reg const& rhs) const { return acct < rhs.acct; } }; std::vector signers; public: msig(std::vector signers_); template explicit msig(AccountType&& a0, Accounts&&... aN) : msig{std::vector{ std::forward(a0), std::forward(aN)...}} { } void operator()(Env&, JTx& jt) const; }; //------------------------------------------------------------------------------ /** The number of signer lists matches. */ using siglists = owner_count; } // namespace jtx } // namespace test } // namespace ripple #endif