Browse Source

desprout

pull/117/head
Duke Leto 4 years ago
parent
commit
0eec14fb01
  1. 1
      src/transaction_builder.cpp
  2. 1
      src/transaction_builder.h
  3. 2
      src/txdb.h
  4. 2
      src/zcash/IncrementalMerkleTree.cpp
  5. 2
      src/zcash/IncrementalMerkleTree.hpp
  6. 2
      src/zcash/JoinSplit.hpp
  7. 2
      src/zcash/Proof.cpp
  8. 2
      src/zcash/Proof.hpp
  9. 2
      src/zcash/prf.cpp
  10. 2
      src/zcash/util.cpp
  11. 1
      src/zcash/zip32.cpp

1
src/transaction_builder.cpp

@ -1,6 +1,5 @@
// Copyright (c) 2018 The Zcash developers
// Copyright (c) 2019-2020 The Hush developers
// Released under the GPLv3
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

1
src/transaction_builder.h

@ -1,4 +1,5 @@
// Copyright (c) 2018 The Zcash developers
// Copyright (c) 2019-2020 The Hush developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

2
src/txdb.h

@ -63,7 +63,7 @@ protected:
public:
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
bool GetSproutAnchorAt(const uint256 &rt, SproutMerkleTree &tree) const;
//bool GetSproutAnchorAt(const uint256 &rt, SproutMerkleTree &tree) const;
bool GetSaplingAnchorAt(const uint256 &rt, SaplingMerkleTree &tree) const;
bool GetNullifier(const uint256 &nf, ShieldedType type) const;
bool GetCoins(const uint256 &txid, CCoins &coins) const;

2
src/zcash/IncrementalMerkleTree.cpp

@ -1,3 +1,5 @@
// Copyright (c) 2019-2020 The Hush developers
#include <stdexcept>
#include <boost/foreach.hpp>

2
src/zcash/IncrementalMerkleTree.hpp

@ -1,3 +1,5 @@
// Copyright (c) 2019-2020 The Hush developers
#ifndef ZC_INCREMENTALMERKLETREE_H_
#define ZC_INCREMENTALMERKLETREE_H_

2
src/zcash/JoinSplit.hpp

@ -1,3 +1,5 @@
// Copyright (c) 2019-2020 The Hush developers
#ifndef ZC_JOINSPLIT_H_
#define ZC_JOINSPLIT_H_

2
src/zcash/Proof.cpp

@ -1,3 +1,5 @@
// Copyright (c) 2019-2020 The Hush developers
#include "Proof.hpp"
#include "crypto/common.h"

2
src/zcash/Proof.hpp

@ -1,3 +1,5 @@
// Copyright (c) 2019-2020 The Hush developers
#ifndef ZC_PROOF_H_
#define ZC_PROOF_H_

2
src/zcash/prf.cpp

@ -1,3 +1,5 @@
// Copyright (c) 2019-2020 The Hush developers
#include "prf.h"
#include "crypto/sha256.h"
#include "hash.h"

2
src/zcash/util.cpp

@ -1,3 +1,5 @@
// Copyright (c) 2019-2020 The Hush developers
#include "zcash/util.h"
#include <algorithm>
#include <stdexcept>

1
src/zcash/zip32.cpp

@ -1,4 +1,5 @@
// Copyright (c) 2018 The Zcash developers
// Copyright (c) 2019-2020 The Hush developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Loading…
Cancel
Save