diff options
author | cuinix <915115094@qq.com> | 2024-03-07 14:03:28 +0800 |
---|---|---|
committer | cuinix <915115094@qq.com> | 2024-04-20 19:17:46 +0800 |
commit | 3837bb853ff3d087a38beb34ed72d3cd75f03aed (patch) | |
tree | 034787564a8d08a916ba9e99179186d0e62e34c4 | |
parent | Merge pull request #9004 (diff) | |
download | monero-3837bb853ff3d087a38beb34ed72d3cd75f03aed.tar.xz |
remove repetitive word
Signed-off-by: cuinix <915115094@qq.com>
-rw-r--r-- | contrib/epee/README.md | 2 | ||||
-rw-r--r-- | src/device/log.hpp | 2 | ||||
-rw-r--r-- | src/multisig/multisig_account_kex_impl.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/contrib/epee/README.md b/contrib/epee/README.md index 8157d3e56..2937c1264 100644 --- a/contrib/epee/README.md +++ b/contrib/epee/README.md @@ -1 +1 @@ -epee - is a small library of helpers, wrappers, tools and and so on, used to make my life easier. +epee - is a small library of helpers, wrappers, tools and so on, used to make my life easier. diff --git a/src/device/log.hpp b/src/device/log.hpp index 92d174da1..21bd70149 100644 --- a/src/device/log.hpp +++ b/src/device/log.hpp @@ -48,7 +48,7 @@ namespace hw { * - All computation done by device are checked by default device. * Required IODUMMYCRYPT_HWDEVICE or IONOCRYPT_HWDEVICE for fully working * #define IODUMMYCRYPT_HWDEVICE 1 - * - It assumes sensitive data encryption is is off on device side. a XOR with 0x55. This allow Ledger Class to make check on clear value + * - It assumes sensitive data encryption is off on device side. a XOR with 0x55. This allow Ledger Class to make check on clear value * #define IONOCRYPT_HWDEVICE 1 * - It assumes sensitive data encryption is off on device side. */ diff --git a/src/multisig/multisig_account_kex_impl.cpp b/src/multisig/multisig_account_kex_impl.cpp index ef0acf307..0fa4309a0 100644 --- a/src/multisig/multisig_account_kex_impl.cpp +++ b/src/multisig/multisig_account_kex_impl.cpp @@ -395,7 +395,7 @@ namespace multisig * - Sanitizes input msgs. * - Require uniqueness in: 'exclude_pubkeys'. * - Requires each input pubkey be recommended by 'num_recommendations = expected_round' msg signers. - * - For a final multisig key to be truly 'M-of-N', each of the the private key's components must be + * - For a final multisig key to be truly 'M-of-N', each of the private key's components must be * shared by (N - M + 1) signers. * - Requires that msgs are signed by only keys in 'signers'. * - Requires that each key in 'signers' recommends [num_signers - 2 CHOOSE (expected_round - 1)] pubkeys. |