From 5a7bbcec3db156d02b9dc4e21fe70ea8853a9b07 Mon Sep 17 00:00:00 2001 From: pacificao Date: Sat, 19 Oct 2024 21:23:59 -0700 Subject: [PATCH] Create invalid_outpoints.h --- src/invalid_outpoints.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/invalid_outpoints.h diff --git a/src/invalid_outpoints.h b/src/invalid_outpoints.h new file mode 100644 index 00000000..47bb01a8 --- /dev/null +++ b/src/invalid_outpoints.h @@ -0,0 +1,17 @@ +#ifndef INVALID_OUTPOINTS_H +#define INVALID_OUTPOINTS_H + +#include + +// 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