lt_blockchain 0.1.0

Blockchain written with educational purpose by Learn Together Community.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate chrono;
extern crate serde;
extern crate serde_json;
extern crate sha2;
extern crate rsa;

use super::wt;

pub mod block;
pub mod chain;
pub mod digest;
pub mod transaction;
pub mod wallet;
pub mod system;
pub mod system_persistence;