2016-01-18 15:33:29 +00:00
|
|
|
// Copyright (c) 2011-2016 The Cryptonote developers
|
2015-04-23 16:07:22 +00:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2015-04-06 16:13:07 +00:00
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
#include "WalletLegacySerialization.h"
|
|
|
|
#include "WalletLegacy/WalletUnconfirmedTransactions.h"
|
|
|
|
#include "IWalletLegacy.h"
|
2015-04-06 16:13:07 +00:00
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
#include "CryptoNoteCore/CryptoNoteSerialization.h"
|
|
|
|
#include "Serialization/ISerializer.h"
|
|
|
|
#include "Serialization/SerializationOverloads.h"
|
2015-04-06 16:13:07 +00:00
|
|
|
|
|
|
|
namespace CryptoNote {
|
|
|
|
|
2015-07-15 12:23:00 +00:00
|
|
|
void serialize(UnconfirmedTransferDetails& utd, CryptoNote::ISerializer& serializer) {
|
2015-04-06 16:13:07 +00:00
|
|
|
serializer(utd.tx, "transaction");
|
|
|
|
serializer(utd.amount, "amount");
|
|
|
|
serializer(utd.outsAmount, "outs_amount");
|
|
|
|
uint64_t time = static_cast<uint64_t>(utd.sentTime);
|
|
|
|
serializer(time, "sent_time");
|
|
|
|
utd.sentTime = static_cast<time_t>(time);
|
|
|
|
uint64_t txId = static_cast<uint64_t>(utd.transactionId);
|
|
|
|
serializer(txId, "transaction_id");
|
|
|
|
utd.transactionId = static_cast<size_t>(txId);
|
|
|
|
}
|
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
void serialize(WalletLegacyTransaction& txi, CryptoNote::ISerializer& serializer) {
|
2015-04-06 16:13:07 +00:00
|
|
|
uint64_t trId = static_cast<uint64_t>(txi.firstTransferId);
|
|
|
|
serializer(trId, "first_transfer_id");
|
|
|
|
txi.firstTransferId = static_cast<size_t>(trId);
|
|
|
|
|
|
|
|
uint64_t trCount = static_cast<uint64_t>(txi.transferCount);
|
|
|
|
serializer(trCount, "transfer_count");
|
|
|
|
txi.transferCount = static_cast<size_t>(trCount);
|
|
|
|
|
|
|
|
serializer(txi.totalAmount, "total_amount");
|
|
|
|
|
|
|
|
serializer(txi.fee, "fee");
|
|
|
|
serializer(txi.hash, "hash");
|
|
|
|
serializer(txi.isCoinbase, "is_coinbase");
|
2015-07-30 15:22:07 +00:00
|
|
|
|
2015-08-05 13:09:05 +00:00
|
|
|
CryptoNote::serializeBlockHeight(serializer, txi.blockHeight, "block_height");
|
2015-07-30 15:22:07 +00:00
|
|
|
|
2015-04-06 16:13:07 +00:00
|
|
|
serializer(txi.timestamp, "timestamp");
|
|
|
|
serializer(txi.unlockTime, "unlock_time");
|
|
|
|
serializer(txi.extra, "extra");
|
2015-07-30 15:22:07 +00:00
|
|
|
|
|
|
|
//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;
|
2015-04-06 16:13:07 +00:00
|
|
|
}
|
|
|
|
|
2015-07-30 15:22:07 +00:00
|
|
|
void serialize(WalletLegacyTransfer& tr, CryptoNote::ISerializer& serializer) {
|
2015-04-06 16:13:07 +00:00
|
|
|
serializer(tr.address, "address");
|
|
|
|
serializer(tr.amount, "amount");
|
|
|
|
}
|
|
|
|
|
|
|
|
} //namespace CryptoNote
|