aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
authornecrashter2022-04-23 13:15:06 +0300
committerYigit Sever2022-04-23 18:10:12 +0300
commit426ce6b84fe6cba6fd4947fb54ba5d5837c65b73 (patch)
tree93e5dcdc786031f0c2ae27bf90b41a48f6f90abe /src/config.rs
parent647967f271d356c3d309ab24ca96fd09f4c87829 (diff)
downloadgradecoin-426ce6b84fe6cba6fd4947fb54ba5d5837c65b73.tar.gz
gradecoin-426ce6b84fe6cba6fd4947fb54ba5d5837c65b73.tar.bz2
gradecoin-426ce6b84fe6cba6fd4947fb54ba5d5837c65b73.zip
Add basic config struct
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
new file mode 100644
index 0000000..80d2def
--- /dev/null
+++ b/src/config.rs
@@ -0,0 +1,20 @@
1//! # Configuration
2//!
3//! This module holds the data structures for network configuration.
4use serde::{Deserialize, Serialize};
5
6/// Configuration for a single network
7#[derive(Debug, Serialize, Deserialize, Clone, Default)]
8pub struct Config {
9 // Valid blocks should have this many transactions
10 pub block_transaction_count: u8,
11 // Inital registration bonus
12 pub register_bonus: u16,
13 // Coinbase reward
14 pub block_reward: u16,
15 // Transaction amount limit
16 pub tx_upper_limit: u16,
17 pub tx_lower_limit: u16,
18 // Transaction traffic reward
19 pub tx_traffic_reward: u16,
20}