diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-10-17 23:37:39 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-10-17 23:37:39 -0500 |
commit | 7ab32cf13a6b62dce1fdbe54aad1503af01e5f9b (patch) | |
tree | 04086b120d5c2cc188605178d49a61fe739233b7 | |
parent | Merge pull request #7870 (diff) | |
parent | Decrease the "recent spend window" in gamma re-select to 15 blocks (diff) | |
download | monero-7ab32cf13a6b62dce1fdbe54aad1503af01e5f9b.tar.xz |
Merge pull request #7993
c599b56 Decrease the 'recent spend window' in gamma re-select to 15 blocks (j-berman)
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index f82210e09..0218d47a1 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -143,7 +143,7 @@ using namespace cryptonote; #define IGNORE_LONG_PAYMENT_ID_FROM_BLOCK_VERSION 12 #define DEFAULT_UNLOCK_TIME (CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE * DIFFICULTY_TARGET_V2) -#define RECENT_SPEND_WINDOW (50 * DIFFICULTY_TARGET_V2) +#define RECENT_SPEND_WINDOW (15 * DIFFICULTY_TARGET_V2) static const std::string MULTISIG_SIGNATURE_MAGIC = "SigMultisigPkV1"; static const std::string MULTISIG_EXTRA_INFO_MAGIC = "MultisigxV1"; |