mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Improve Json::Value:
o Increase test coverage. o Remove unused and/or broken interfaces.
This commit is contained in:
committed by
Nik Bougalis
parent
fb0d065723
commit
3ea525430e
@@ -39,7 +39,6 @@ signers (Account const& account,
|
||||
jv[jss::TransactionType] = jss::SignerListSet;
|
||||
jv[sfSignerQuorum.getJsonName()] = quorum;
|
||||
auto& ja = jv[sfSignerEntries.getJsonName()];
|
||||
ja.resize(v.size());
|
||||
for(std::size_t i = 0; i < v.size(); ++i)
|
||||
{
|
||||
auto const& e = v[i];
|
||||
@@ -91,7 +90,6 @@ msig::operator()(Env& env, JTx& jt) const
|
||||
Rethrow();
|
||||
}
|
||||
auto& js = jtx[sfSigners.getJsonName()];
|
||||
js.resize(mySigners.size());
|
||||
for(std::size_t i = 0; i < mySigners.size(); ++i)
|
||||
{
|
||||
auto const& e = mySigners[i];
|
||||
|
||||
Reference in New Issue
Block a user