From 9034d8be58b4a6583361ace64f8508d14d80f520 Mon Sep 17 00:00:00 2001 From: sowle Date: Thu, 26 May 2022 17:03:49 +0200 Subject: [PATCH] fixed tx serialization chaining for version --- src/currency_core/currency_basic_backward_comp.inl | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/currency_core/currency_basic_backward_comp.inl b/src/currency_core/currency_basic_backward_comp.inl index 4a8ff1fe..b9d3b575 100644 --- a/src/currency_core/currency_basic_backward_comp.inl +++ b/src/currency_core/currency_basic_backward_comp.inl @@ -46,7 +46,6 @@ public: template bool transition_convert(const transaction_prefix_current_t& from, transaction_prefix_v1& to) { - to.version = from.version; to.extra = from.extra; to.vin = from.vin; to.vout = from.vout; @@ -55,7 +54,6 @@ bool transition_convert(const transaction_prefix_current_t& from, transaction_pr template bool transition_convert(const transaction_prefix_v1& from, transaction_prefix_current_t& to) { - to.version = from.version; to.extra = from.extra; to.vin = from.vin; to.vout = from.vout;