Fix a debug message

`GeneratingKeys` is not a valid state for the `set_observer` operation.
This commit is contained in:
Alexey 2019-03-26 19:06:52 +03:00 committed by Nick Sanders
parent 94546b0e2c
commit 8f6387f012
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ impl<C: Contribution, N: NodeId> StateMachine<C, N> {
State::Observer { dhb: Some(dhb) }
}
ref s => panic!(
"State::set_observer: State must be `GeneratingKeys`. \
"State::set_observer: State must be `DeterminingNetworkState`. \
State: {}",
s.discriminant()
),