diff options
| author | tobtoht <tob@featherwallet.org> | 2025-09-28 18:35:30 +0000 |
|---|---|---|
| committer | tobtoht <tob@featherwallet.org> | 2025-09-28 18:35:30 +0000 |
| commit | 6ee94b07df334c3d1733c7ed91da3fa0b804914c (patch) | |
| tree | e927ad5bdf0aed5bdfc01a55efbdfed52e49d1e8 | |
| parent | 6552aa6165e2e8431ca44c57e5822d0d1019c4a2 (diff) | |
| parent | 13e28ea6d64117d8e042abbbfed51e5f5963e862 (diff) | |
| download | monzero-core-6ee94b07df334c3d1733c7ed91da3fa0b804914c.tar.gz monzero-core-6ee94b07df334c3d1733c7ed91da3fa0b804914c.tar.xz monzero-core-6ee94b07df334c3d1733c7ed91da3fa0b804914c.zip | |
Merge pull request #10098
13e28ea simplewallet: batch address creation limit to match rpc (nahuhh)
| -rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 33f5f64d7..809fb5ce6 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -140,7 +140,7 @@ typedef cryptonote::simple_wallet sw; #define CREDITS_TARGET 50000 #define MAX_PAYMENT_DIFF 10000 #define MIN_PAYMENT_RATE 0.01f // per hash -#define MAX_MNEW_ADDRESSES 1000 +#define MAX_MNEW_ADDRESSES 65536 #define CHECK_MULTISIG_ENABLED() \ do \ |
