// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers // // This file is part of Bytecoin. // // Bytecoin is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Bytecoin is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with Bytecoin. If not, see . #include "WalletLegacySerialization.h" #include "WalletLegacy/WalletUnconfirmedTransactions.h" #include "IWalletLegacy.h" #include "CryptoNoteCore/CryptoNoteSerialization.h" #include "Serialization/ISerializer.h" #include "Serialization/SerializationOverloads.h" namespace CryptoNote { void serialize(UnconfirmedTransferDetails& utd, CryptoNote::ISerializer& serializer) { serializer(utd.tx, "transaction"); serializer(utd.amount, "amount"); serializer(utd.outsAmount, "outs_amount"); uint64_t time = static_cast(utd.sentTime); serializer(time, "sent_time"); utd.sentTime = static_cast(time); uint64_t txId = static_cast(utd.transactionId); serializer(txId, "transaction_id"); utd.transactionId = static_cast(txId); } void serialize(WalletLegacyTransaction& txi, CryptoNote::ISerializer& serializer) { uint64_t trId = static_cast(txi.firstTransferId); serializer(trId, "first_transfer_id"); txi.firstTransferId = static_cast(trId); uint64_t trCount = static_cast(txi.transferCount); serializer(trCount, "transfer_count"); txi.transferCount = static_cast(trCount); serializer(txi.totalAmount, "total_amount"); serializer(txi.fee, "fee"); serializer(txi.hash, "hash"); serializer(txi.isCoinbase, "is_coinbase"); if (serializer.type() == ISerializer::INPUT) { uint64_t height = 0; serializer(height, "block_height"); if (height == std::numeric_limits::max()) { txi.blockHeight = WALLET_LEGACY_UNCONFIRMED_TRANSACTION_HEIGHT; } else { txi.blockHeight = static_cast(height); } } else { serializer(txi.blockHeight, "block_height"); } serializer(txi.timestamp, "timestamp"); serializer(txi.unlockTime, "unlock_time"); serializer(txi.extra, "extra"); //this field has been added later in the structure. //in order to not break backward binary compatibility // we just set it to zero txi.sentTime = 0; } void serialize(WalletLegacyTransfer& tr, CryptoNote::ISerializer& serializer) { serializer(tr.address, "address"); serializer(tr.amount, "amount"); } } //namespace CryptoNote