Implemented and added usage of eventbus. Added a lot of UI interaction. Added a lot of DB work.

This commit is contained in:
Revertron
2021-01-30 14:18:37 +01:00
parent 9e6a01847e
commit 562c004b0d
13 changed files with 385 additions and 71 deletions
+10
View File
@@ -0,0 +1,10 @@
#[derive(Clone, PartialEq, Debug)]
pub enum Event {
MinerStarted,
MinerStopped,
KeyGeneratorStarted,
KeyGeneratorStopped,
NewBlockReceived,
BlockchainChanged,
ActionStopMining,
}