From 045801449a66f30ab37e46b39031ab97cbfbebc9 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Fri, 1 Jul 2022 17:20:55 +0200 Subject: [PATCH] hidden amounts in wallet: fixed warining in out_get_mixin_attr() --- src/wallet/wallet2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index e06c0023..0b8de104 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -369,7 +369,7 @@ bool wallet2::out_get_mixin_attr(const currency::tx_out_v& out_t) } else if (out_t.type() == typeid(currency::tx_out_zarcanum)) { - boost::get(out_t).mix_attr; + return boost::get(out_t).mix_attr; } else {