From 17ac8050ae55944e8a6a618d2cfd201b6be7e75d Mon Sep 17 00:00:00 2001 From: surangap Date: Tue, 25 May 2021 11:12:46 +0800 Subject: [PATCH] Added SendManyOptions estimateMode enum Mode to the docs --- website/docs/jellyfish/api/wallet.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/docs/jellyfish/api/wallet.md b/website/docs/jellyfish/api/wallet.md index ca61664e6b..e0cad446c0 100644 --- a/website/docs/jellyfish/api/wallet.md +++ b/website/docs/jellyfish/api/wallet.md @@ -272,4 +272,10 @@ interface SendManyOptions { confTarget?: number estimateMode?: Mode } + +enum Mode { + UNSET = 'UNSET', + ECONOMICAL = 'ECONOMICAL', + CONSERVATIVE = 'CONSERVATIVE' +} ```