diff options
author | Yigit Sever | 2021-04-26 00:56:21 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-26 00:56:21 +0300 |
commit | 95aeb141c1ca7188b1f23cf807b93a0457e20391 (patch) | |
tree | 1cc511a6afbf7208aa6d820c4e13de323de6ae31 /src/handlers.rs | |
parent | 820a0a600cb8fe2432374a3691e76940f6726044 (diff) | |
download | gradecoin-95aeb141c1ca7188b1f23cf807b93a0457e20391.tar.gz gradecoin-95aeb141c1ca7188b1f23cf807b93a0457e20391.tar.bz2 gradecoin-95aeb141c1ca7188b1f23cf807b93a0457e20391.zip |
Increase block capacity
Diffstat (limited to 'src/handlers.rs')
-rw-r--r-- | src/handlers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handlers.rs b/src/handlers.rs index ed95604..b8b20d7 100644 --- a/src/handlers.rs +++ b/src/handlers.rs | |||
@@ -22,7 +22,7 @@ use warp::{http::StatusCode, reply}; | |||
22 | use crate::PRIVATE_KEY; | 22 | use crate::PRIVATE_KEY; |
23 | 23 | ||
24 | // Valid blocks should have this many transactions | 24 | // Valid blocks should have this many transactions |
25 | const BLOCK_TRANSACTION_COUNT: u8 = 5; | 25 | const BLOCK_TRANSACTION_COUNT: u8 = 10; |
26 | // Inital registration bonus | 26 | // Inital registration bonus |
27 | const REGISTER_BONUS: u16 = 40; | 27 | const REGISTER_BONUS: u16 = 40; |
28 | // Coinbase reward | 28 | // Coinbase reward |