compile commits so far

This commit is contained in:
akildemir
2025-05-21 14:04:02 +03:00
parent c4ca673074
commit 4ee14df3c6
2 changed files with 12 additions and 2 deletions

View File

@@ -91,6 +91,16 @@ inline bool do_serialize(Archive &ar, bool &v)
return true;
}
template <class Archive, class T, typename... Args>
inline auto do_serialize(Archive &ar, T &v, Args&&... args)
-> decltype(do_serialize_object(ar, v, args...), true)
{
ar.begin_object();
const bool r = do_serialize_object(ar, v, args...);
ar.end_object();
return r && ar.good();
}
/* the following add a trait to a set and define the serialization DSL*/
/*! \macro BLOB_SERIALIZER

View File

@@ -6673,8 +6673,8 @@ bool simple_wallet::process_ring_members(const std::vector<tools::wallet2::pendi
for (size_t n = 0; n < ptx_vector.size(); ++n)
{
const cryptonote::transaction& tx = ptx_vector[n].tx;
if (tx.rct_signatures.type >= rct::RCTTypeFcmpPlusPlus)
continue;
// if (tx.rct_signatures.type >= rct::RCTTypeFcmpPlusPlus)
// continue;
const auto& construction_data = std::get<tools::wallet2::tx_construction_data>(ptx_vector[n].construction_data);
if (verbose)
ostr << boost::format(tr("\nTransaction %llu/%llu: txid=%s")) % (n + 1) % ptx_vector.size() % cryptonote::get_transaction_hash(tx);