Minor increase to max tx input count

This commit is contained in:
Ignotus Peverell 2018-03-16 22:26:36 +00:00
parent 1b3541245a
commit 2fb97eb87f
No known key found for this signature in database
GPG key ID: 99CD25F39F8F8211

View file

@ -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 pub const MAX_BLOCK_INPUTS: usize = 300_000; // soft fork down when too_high
/// Maximum inputs for a transaction /// Maximum inputs for a transaction
pub const MAX_TX_INPUTS: u64 = 500; pub const MAX_TX_INPUTS: u64 = 2048;
/// Maximum outputs for a transaction /// Maximum outputs for a transaction
pub const MAX_TX_OUTPUTS: u64 = 500; // wallet uses 500 as max pub const MAX_TX_OUTPUTS: u64 = 500; // wallet uses 500 as max