// 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 "WalletSerialization.h" #include "WalletUnconfirmedTransactions.h" #include "IWallet.h" #include "cryptonote_core/cryptonote_serialization.h" #include "serialization/ISerializer.h" #include "serialization/SerializationOverloads.h" namespace CryptoNote { void serialize(UnconfirmedTransferDetails& utd, const std::string& name, CryptoNote::ISerializer& serializer) { serializer.beginObject(name); 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); serializer.endObject(); } void serialize(TransactionInfo& txi, const std::string& name, CryptoNote::ISerializer& serializer) { serializer.beginObject(name); 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"); serializer(txi.blockHeight, "block_height"); serializer(txi.timestamp, "timestamp"); serializer(txi.unlockTime, "unlock_time"); serializer(txi.extra, "extra"); serializer.endObject(); } void serialize(Transfer& tr, const std::string& name, CryptoNote::ISerializer& serializer) { serializer.beginObject(name); serializer(tr.address, "address"); serializer(tr.amount, "amount"); serializer.endObject(); } } //namespace CryptoNote