forked from lthn/blockchain
fixed tx serialization chaining for version
This commit is contained in:
parent
32c852b48c
commit
9034d8be58
1 changed files with 0 additions and 2 deletions
|
|
@ -46,7 +46,6 @@ public:
|
|||
template<typename transaction_prefix_current_t>
|
||||
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<typename transaction_prefix_current_t>
|
||||
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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue