From 225a04151dff30f6c7bc39704e74a9e9563f5d2d Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Wed, 5 Nov 2025 16:47:22 -0800 Subject: [PATCH] Add unallowpubkey and unbanpubkey --- 86.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/86.md b/86.md index 6f64eee73a..b9a8cc24f9 100644 --- a/86.md +++ b/86.md @@ -34,12 +34,18 @@ This is the list of **methods** that may be supported: * `banpubkey`: - params: `["<32-byte-hex-public-key>", ""]` - result: `true` (a boolean always set to `true`) +* `unbanpubkey`: + - params: `["<32-byte-hex-public-key>", ""]` + - result: `true` (a boolean always set to `true`) * `listbannedpubkeys`: - params: `[]` - result: `[{"pubkey": "<32-byte-hex>", "reason": ""}, ...]`, an array of objects * `allowpubkey`: - params: `["<32-byte-hex-public-key>", ""]` - result: `true` (a boolean always set to `true`) +* `unallowpubkey`: + - params: `["<32-byte-hex-public-key>", ""]` + - result: `true` (a boolean always set to `true`) * `listallowedpubkeys`: - params: `[]` - result: `[{"pubkey": "<32-byte-hex>", "reason": ""}, ...]`, an array of objects