PRCYCoin  2.0.0.7rc1
P2P Digital Currency
invalid_outpoints.json.h
Go to the documentation of this file.
1 // Copyright (c) 2018 The PIVX 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 #ifndef PRCYcoin_INVALID_OUTPOINTS_JSON_H
6 #define PRCYcoin_INVALID_OUTPOINTS_JSON_H
7 #include <string>
8 
9 std::string LoadInvalidOutPoints()
10 {
11  std::string str = "[\n"
12  " {\n"
13  " \"txid\": \"5280c9c4d94f48da118559505031cecc0c730052b0bb38b98d0950f503b1c17e\",\n"
14  " \"n\": 0\n"
15  " },\n"
16  " {\n"
17  " \"txid\": \"f018e1cb852403152fd5c80f5eaa4696da217e19f139215fcd58ca5430a53a9e\",\n"
18  " \"n\": 0\n"
19  " }\n"
20  "]";
21  return str;
22 }
23 
24 #endif //PRCYcoin_INVALID_OUTPOINTS_JSON_H
LoadInvalidOutPoints
std::string LoadInvalidOutPoints()
Definition: invalid_outpoints.json.h:9