aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/config.rs20
-rw-r--r--src/main.rs1
2 files changed, 21 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}
diff --git a/src/main.rs b/src/main.rs
index f0027f2..57ee526 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -29,6 +29,7 @@ mod handlers;
29mod routes; 29mod routes;
30mod block; 30mod block;
31mod student; 31mod student;
32mod config;
32 33
33pub use block::{Fingerprint, Id}; 34pub use block::{Fingerprint, Id};
34use db::Db; 35use db::Db;