libzcash::PaymentAddress has been renamed to libzcash::SproutPaymentAddress, and a new typedef boost::variant is now libzcash::PaymentAddress. Similarly for ViewingKey and SpendingKey. A new class InvalidEncoding is introduced as the default boost::variant option for each address and key type; it is used during decoding instead of boost::optional. All address and key storage functions in the wallet have been modified to refer specifically to the Sprout types, as they are used very precisely. In most other cases, the more general type is leveraged as much as possible, and we convert to the Sprout type when necessary. This will be subsequently wrapped in, or replaced with, context-specific functions once Sapling types are implemented.
19 lines
840 B
C
19 lines
840 B
C
// Copyright (c) 2016 The Zcash developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "wallet/wallet.h"
|
|
#include "zcash/JoinSplit.hpp"
|
|
#include "zcash/Note.hpp"
|
|
#include "zcash/NoteEncryption.hpp"
|
|
|
|
CWalletTx GetValidReceive(ZCJoinSplit& params,
|
|
const libzcash::SproutSpendingKey& sk, CAmount value,
|
|
bool randomInputs);
|
|
libzcash::SproutNote GetNote(ZCJoinSplit& params,
|
|
const libzcash::SproutSpendingKey& sk,
|
|
const CTransaction& tx, size_t js, size_t n);
|
|
CWalletTx GetValidSpend(ZCJoinSplit& params,
|
|
const libzcash::SproutSpendingKey& sk,
|
|
const libzcash::SproutNote& note, CAmount value);
|