Open swirlds-automation opened 1 year ago
migrated from:
url=https://github.com/swirlds/swirlds-platform/issues/6486
author:lpetrovic05, #:6486, createdAt:2022-12-29T07:10:39Z, updatedAt=2023-02-17T22:51:39Z
labels=Migration:Hashgraph
@lpetrovic05 is this ticket still valid?
@lpetrovic05 is this ticket still valid?
I can only tell you that this was not done, I am not sure if it needs to be done. We should discuss with with Leemon.
Right now, 4 of the equations are passed a witness
y
that we are voting on, but should instead be passed a creator IDm
, whose witness is being voted on. For example,vote(x,y)
returns a boolean for whetherx
is voting yes for witnessy
. That will be changed tovote(x,m)
which returns the witnessy
created bym
for whichX
is voting yes. (Ornull
if it isn't voting yes for any witness created bym
). The switch will affectvote
,firstVote
,copyVote
, anddecide
. In all those cases, we will have a parameterm
(creator ID) instead ofy
(a witness).