This commit is contained in:
2022-02-03 23:45:47 -08:00
parent 42c2062cc4
commit 184ece190c
1438 changed files with 404064 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
// Copyright (c) 2018 The PIVX developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef Agrarian_INVALID_H
#define Agrarian_INVALID_H
#endif //Agrarian_INVALID_H
#include <libzerocoin/bignum.h>
#include <univalue/include/univalue.h>
#include <primitives/transaction.h>
namespace invalid_out
{
extern std::set<CBigNum> setInvalidSerials;
extern std::set<COutPoint> setInvalidOutPoints;
UniValue read_json(const std::string& jsondata);
bool ContainsOutPoint(const COutPoint& out);
bool ContainsSerial(const CBigNum& bnSerial);
bool LoadOutpoints();
bool LoadSerials();
}