aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/handlers.rs1
-rw-r--r--src/student.rs6
2 files changed, 7 insertions, 0 deletions
diff --git a/src/handlers.rs b/src/handlers.rs
index e31a4ad..736ad29 100644
--- a/src/handlers.rs
+++ b/src/handlers.rs
@@ -553,6 +553,7 @@ pub async fn propose_block(
553 let coinbase = pending_transactions.get(&new_block.transaction_list[0]).unwrap(); 553 let coinbase = pending_transactions.get(&new_block.transaction_list[0]).unwrap();
554 let mut coinbase_user = users_store.get_mut(&coinbase.source).unwrap(); 554 let mut coinbase_user = users_store.get_mut(&coinbase.source).unwrap();
555 coinbase_user.balance += BLOCK_REWARD; 555 coinbase_user.balance += BLOCK_REWARD;
556 debug!("{} block reward went to {:?} for mining the block", BLOCK_REWARD, coinbase_user);
556 557
557 let mut holding: HashMap<String, Transaction> = HashMap::new(); 558 let mut holding: HashMap<String, Transaction> = HashMap::new();
558 559
diff --git a/src/student.rs b/src/student.rs
index 2b9c5bd..b6d99cd 100644
--- a/src/student.rs
+++ b/src/student.rs
@@ -24,6 +24,12 @@ pub struct User {
24 pub is_bot: bool, 24 pub is_bot: bool,
25} 25}
26 26
27impl fmt::Display for User {
28 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
29 write!(f, "{}", self.user_id)
30 }
31}
32
27#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)] 33#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
28pub struct MetuId { 34pub struct MetuId {
29 id: Id, 35 id: Id,