From 42680ba7fbd3cd20092a2acfc13fcd1a3d172bbd Mon Sep 17 00:00:00 2001 From: pacificao Date: Sat, 19 Oct 2024 20:51:00 -0700 Subject: [PATCH] Create invalid_outpoints.json.h --- src/invalid_outpoints.json.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/invalid_outpoints.json.h diff --git a/src/invalid_outpoints.json.h b/src/invalid_outpoints.json.h new file mode 100644 index 00000000..0bd047b2 --- /dev/null +++ b/src/invalid_outpoints.json.h @@ -0,0 +1,13 @@ +#ifndef INVALID_OUTPOINTS_JSON_H +#define INVALID_OUTPOINTS_JSON_H + +std::string GetInvalidOutpoints() { + return "[\n" + " {\n" + " \"txid\": \"\",\n" + " \"index\": 0\n" + " }\n" + "]"; +} + +#endif // INVALID_OUTPOINTS_JSON_H