From 8a33cafcbfb906cfa25f6c57e61566705c3a7ef7 Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Thu, 29 May 2025 23:26:22 +0200 Subject: [PATCH] fix typo --- src/multisig/multisig_account.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/multisig/multisig_account.h b/src/multisig/multisig_account.h index d1de2349e..96da94722 100644 --- a/src/multisig/multisig_account.h +++ b/src/multisig/multisig_account.h @@ -78,7 +78,7 @@ namespace multisig * * Note on MULTISIG_MAX_SIGNERS: During key exchange, participants will have up to '(N - 1) choose (N - M)' * key shares. If N is large, then the max number of key shares (when M = (N-1)/2) can be huge. A limit of N <= 16 was - * arbitrarily chosen as a power of 2 that can accomodate the vast majority of practical use-cases. To increase the + * arbitrarily chosen as a power of 2 that can accommodate the vast majority of practical use-cases. To increase the * limit, FROST-style key aggregation should be used instead (it is more efficient than DH-based key generation * when N - M > 1). *