We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operation from , Algorithm 1, line 10 is missing from
---------+---x1----> Ca | +---> Cb and ---------+--------> Ca | +--x2-> Cb
Ca
Cb
x1
x2
submit_event_proof(Ca, x1)
submit_contesting_proof(Cb, x1)
submit_event_proof(Cb, x2)
submit_contesting_proof(Ca, x2)
Pn denotes the proof that was generated for chain Cn
Pn
Cn
x0
Pa
Pb
---x0---+--------> Ca | +---> Cb
--------+---x1---> Ca | +---> Cb
--------+----------> Ca | +--x2--> Cb
The text was updated successfully, but these errors were encountered:
It seems that the assignment of proof π is not missing. It is done inside the verify() function.
Sorry, something went wrong.
verify()
No branches or pull requests
Operation from , Algorithm 1, line 10 is missing from
Ca
andCb
which have a common ancestor blockCa
contains blockx1
and onlyCb
containsx2
1.|Ca| > |Cb|: Execute
submit_event_proof(Ca, x1)
andsubmit_contesting_proof(Cb, x1)
2.|Ca| > |Cb|: Execute
submit_event_proof(Cb, x2)
andsubmit_contesting_proof(Ca, x2)
Update
Pn
denotes the proof that was generated for chainCn
x0
contained inPa
andPb
x0
inCa
x0
inCb
x1
contained inPa
but not inPb
x1
inCa
x1
not inCb
x1
is not mapped yetx2
contained inPb
but not inPb
x2
not inCa
x2
is not mapped yetx2
inCb
x2
not inCa
; honest chain does not include 'x2'The text was updated successfully, but these errors were encountered: