Create invalid_outpoints.h

This commit is contained in:
2024-10-19 21:23:59 -07:00
committed by GitHub
parent b332b8ad55
commit 5a7bbcec3d
+17
View File
@@ -0,0 +1,17 @@
#ifndef INVALID_OUTPOINTS_H
#define INVALID_OUTPOINTS_H
#include <string>
// Function to return a JSON string representing invalid outpoints
std::string LoadInvalidOutPoints() {
// This is a placeholder JSON structure for invalid outpoints
return "[\n"
" {\n"
" \"txid\": \"0000000000000000000000000000000000000000000000000000000000000000\",\n"
" \"index\": 0\n"
" }\n"
"]";
}
#endif // INVALID_OUTPOINTS_H