aboutsummaryrefslogtreecommitdiffstats
path: root/src/schema.rs
diff options
context:
space:
mode:
authorYigit Sever2021-04-15 14:30:41 +0300
committerYigit Sever2021-04-15 14:30:41 +0300
commit237fa34e91d8c1833c2dbd0244929669c271ab5e (patch)
treed11908ab1f71c64020d4ed588d9fb940f0f374ab /src/schema.rs
parentbff5cd1eb6a67456426f02d6730e0bf945fc67e3 (diff)
downloadgradecoin-237fa34e91d8c1833c2dbd0244929669c271ab5e.tar.gz
gradecoin-237fa34e91d8c1833c2dbd0244929669c271ab5e.tar.bz2
gradecoin-237fa34e91d8c1833c2dbd0244929669c271ab5e.zip
Cleaned up user authentication
Removed TODOs, unrolled unwraps
Diffstat (limited to 'src/schema.rs')
-rw-r--r--src/schema.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/schema.rs b/src/schema.rs
index 6f2f1f3..dca0eef 100644
--- a/src/schema.rs
+++ b/src/schema.rs
@@ -163,7 +163,7 @@ impl Block {
163 Block { 163 Block {
164 transaction_list: vec!["gradecoin_bank".to_owned()], 164 transaction_list: vec!["gradecoin_bank".to_owned()],
165 nonce: 0, 165 nonce: 0,
166 timestamp: NaiveDate::from_ymd(2021, 04, 11).and_hms(20, 45, 00), 166 timestamp: NaiveDate::from_ymd(2021, 4, 11).and_hms(20, 45, 00),
167 hash: String::from("not_actually_mined"), 167 hash: String::from("not_actually_mined"),
168 } 168 }
169 } 169 }