From a957f4476cb90d6ac384ecabca8f0dd6d735c71c Mon Sep 17 00:00:00 2001 From: shana Date: Fri, 17 Feb 2023 09:26:57 +0800 Subject: [PATCH] update wallet.md --- docs/node/CATEGORIES/05-wallet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/node/CATEGORIES/05-wallet.md b/docs/node/CATEGORIES/05-wallet.md index 05a779c1b7..6a1733ec96 100644 --- a/docs/node/CATEGORIES/05-wallet.md +++ b/docs/node/CATEGORIES/05-wallet.md @@ -412,9 +412,9 @@ interface wallet { Add an nrequired-to-sign multisignature address to the wallet. Requires a new wallet backup. -```ts title="client.wallet.signMessage()" +```ts title="client.wallet.addMultiSigAddress()" interface wallet { - addMultiSigAddress (nrequired: number, keys: string): Promise + addMultiSigAddress (nRequired: number, keys: string, label?: string, addressType?: string): Promise } interface MultiSigAddressResult {