11 lines
207 B
Rust
11 lines
207 B
Rust
|
|
#[derive(Clone, PartialEq, Debug)]
|
||
|
|
pub enum Event {
|
||
|
|
MinerStarted,
|
||
|
|
MinerStopped,
|
||
|
|
KeyGeneratorStarted,
|
||
|
|
KeyGeneratorStopped,
|
||
|
|
NewBlockReceived,
|
||
|
|
BlockchainChanged,
|
||
|
|
ActionStopMining,
|
||
|
|
}
|