Implemented P2P network protocol. Refactored project structure.

This commit is contained in:
Revertron
2021-02-05 22:24:28 +01:00
parent 562c004b0d
commit 9e7a1b8834
20 changed files with 524 additions and 101 deletions
+3 -1
View File
@@ -50,7 +50,9 @@ impl Context {
pub struct Settings {
pub chain_name: String,
pub version_flags: u32,
pub key_file: String
pub key_file: String,
pub listen: String,
pub peers: Vec<String>
}
impl Settings {