diff options
author | Yigit Sever | 2021-04-15 14:30:41 +0300 |
---|---|---|
committer | Yigit Sever | 2021-04-15 14:30:41 +0300 |
commit | 55519b2de267f22f8d1dc8d42116e3075a0e43ab (patch) | |
tree | f19fb1a8cdb44d6fbe32126e407d852c60968558 /src/schema.rs | |
parent | 343bf9ec1942de4d4453846681d178f2ca7f0790 (diff) | |
download | gradecoin-55519b2de267f22f8d1dc8d42116e3075a0e43ab.tar.gz gradecoin-55519b2de267f22f8d1dc8d42116e3075a0e43ab.tar.bz2 gradecoin-55519b2de267f22f8d1dc8d42116e3075a0e43ab.zip |
Cleaned up user authentication
Removed TODOs, unrolled unwraps
Diffstat (limited to 'src/schema.rs')
-rw-r--r-- | src/schema.rs | 2 |
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 | } |