Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raising lelantus joinsplit limit to 5000 #951

Merged
merged 1 commit into from
Dec 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/zerocoin_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,19 +130,19 @@ static const int64_t DUST_HARD_LIMIT = 1000; // 0.00001 FIRO mininput
#define ZC_SIGMA_INPUT_LIMIT_PER_TRANSACTION 35

// Value of lelantus spends allowed per block
#define ZC_LELANTUS_VALUE_SPEND_LIMIT_PER_BLOCK (1100 * COIN)
#define ZC_LELANTUS_VALUE_SPEND_LIMIT_PER_BLOCK (5100 * COIN)

// Amount of lelantus spends allowed per block
#define ZC_LELANTUS_INPUT_LIMIT_PER_BLOCK 100

// Value of lelantus spends allowed per transaction
#define ZC_LELANTUS_VALUE_SPEND_LIMIT_PER_TRANSACTION (1001 * COIN)
#define ZC_LELANTUS_VALUE_SPEND_LIMIT_PER_TRANSACTION (5001 * COIN)

// Amount of lelantus spends allowed per transaction
#define ZC_LELANTUS_INPUT_LIMIT_PER_TRANSACTION 50

// Maximum amount of lelantus mint
#define ZC_LELANTUS_MAX_MINT (1001 * COIN)
#define ZC_LELANTUS_MAX_MINT (5001 * COIN)

// Number of zerocoin mints allowed per transaction
#define ZC_MINT_LIMIT 100
Expand Down