-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from KenshiTech/v0.11.20
V0.11.20
- Loading branch information
Showing
36 changed files
with
8,271 additions
and
1,317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package constants | ||
|
||
var Version = "0.11.19" | ||
var Version = "0.11.20" | ||
var ProtocolVersion = "0.11.17" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,7 @@ const ( | |
|
||
EventLog | ||
EventLogBroadcast | ||
|
||
CorrectnessReport | ||
CorrectnessReportBroadcast | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package datasets | ||
|
||
import ( | ||
"github.com/KenshiTech/unchained/crypto/bls" | ||
) | ||
|
||
type Correctness struct { | ||
Timestamp uint64 | ||
Hash [64]byte | ||
Topic [64]byte | ||
Correct bool | ||
} | ||
|
||
type CorrectnessReport struct { | ||
Correctness | ||
Signature [48]byte | ||
} | ||
|
||
type BroadcastCorrectnessPacket struct { | ||
Info Correctness | ||
Signature [48]byte | ||
Signer bls.Signer | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.