From 6731280da4337e79f74e3afd76e6598fafa09a67 Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Sat, 24 Jun 2023 21:52:23 +0000 Subject: [PATCH] ZEPH support --- src/cryptonote_core/cryptonote_format_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cryptonote_core/cryptonote_format_utils.cpp b/src/cryptonote_core/cryptonote_format_utils.cpp index bd6abd1..3599def 100644 --- a/src/cryptonote_core/cryptonote_format_utils.cpp +++ b/src/cryptonote_core/cryptonote_format_utils.cpp @@ -289,7 +289,7 @@ namespace cryptonote t.vin[0].type() == typeid(txin_xasset) ? boost::get(t.vin[0]).key_offsets.size() - 1 : 0; } else if (t.blob_type == BLOB_TYPE_CRYPTONOTE_ZEPH) { - mixin = t.vin_zeph.empty() ? 0 : t.vin_zeph[0].type() == typeid(txin_to_key) ? boost::get(t.vin_zeph[0]).key_offsets.size() - 1 : 0; + mixin = t.vin_zeph.empty() ? 0 : t.vin_zeph[0].type() == typeid(txin_to_key) ? boost::get(t.vin_zeph[0]).key_offsets.size() - 1 : 0; } else { mixin = t.vin.empty() ? 0 : t.vin[0].type() == typeid(txin_to_key) ? boost::get(t.vin[0]).key_offsets.size() - 1 : 0; }