mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
Minor increase to max tx input count
This commit is contained in:
parent
1b3541245a
commit
2fb97eb87f
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ pub const MAX_BLOCK_WEIGHT: usize = 80_000;
|
|||
pub const MAX_BLOCK_INPUTS: usize = 300_000; // soft fork down when too_high
|
||||
|
||||
/// Maximum inputs for a transaction
|
||||
pub const MAX_TX_INPUTS: u64 = 500;
|
||||
pub const MAX_TX_INPUTS: u64 = 2048;
|
||||
|
||||
/// Maximum outputs for a transaction
|
||||
pub const MAX_TX_OUTPUTS: u64 = 500; // wallet uses 500 as max
|
||||
|
|
Loading…
Reference in a new issue