Fix
This commit is contained in:
parent
40c8ac80c1
commit
1e91d3f65a
|
@ -73,7 +73,7 @@ proc computeFSMLogicFunctionsPermutationValue[NonTerminalSymbol, NodeType, Event
|
||||||
result = rawInput
|
result = rawInput
|
||||||
|
|
||||||
proc consensusFSMAdvance[NodeType, EventType](fsm: ConsensusFSM[NodeType, EventType, RaftMessageBase], node: NodeType, event: EventType,
|
proc consensusFSMAdvance[NodeType, EventType](fsm: ConsensusFSM[NodeType, EventType, RaftMessageBase], node: NodeType, event: EventType,
|
||||||
rawInput: TerminalSymbol[EventType, NodeType, RaftMessageBase]): NonTerminalSymbol[NodeType] =
|
rawInput: TerminalSymbol[EventType, NodeType, RaftMessageBase], msg: Option[RaftMessageBase]): NonTerminalSymbol[NodeType] =
|
||||||
withRLock():
|
withRLock():
|
||||||
var
|
var
|
||||||
input = computeFSMLogicFunctionsPermutationValue(fsm, node, event, rawInput)
|
input = computeFSMLogicFunctionsPermutationValue(fsm, node, event, rawInput)
|
||||||
|
|
Loading…
Reference in New Issue