]>
Commit | Line | Data |
---|---|---|
0bb3d40f JG |
1 | // Copyright (c) 2016 The Zcash developers |
2 | // Distributed under the MIT software license, see the accompanying | |
3 | // file COPYING or http://www.opensource.org/licenses/mit-license.php. | |
4 | ||
5 | #include "wallet/wallet.h" | |
6 | #include "zcash/JoinSplit.hpp" | |
7 | #include "zcash/Note.hpp" | |
8 | #include "zcash/NoteEncryption.hpp" | |
9 | ||
10 | CWalletTx GetValidReceive(ZCJoinSplit& params, | |
11 | const libzcash::SpendingKey& sk, CAmount value, | |
12 | bool randomInputs); | |
13 | libzcash::Note GetNote(ZCJoinSplit& params, | |
14 | const libzcash::SpendingKey& sk, | |
15 | const CTransaction& tx, size_t js, size_t n); | |
16 | CWalletTx GetValidSpend(ZCJoinSplit& params, | |
17 | const libzcash::SpendingKey& sk, | |
18 | const libzcash::Note& note, CAmount value); |