Initial commit - Tutus Consensus (dBFT 2.0)

This commit is contained in:
2025-12-21 06:00:02 -05:00
commit 0f8973ec33
89 changed files with 9966 additions and 0 deletions

9
commit.go Normal file
View File

@@ -0,0 +1,9 @@
package dbft
// Commit is an interface for dBFT Commit message.
type Commit interface {
// Signature returns commit's signature field
// which is a final block signature for the current epoch for both dBFT 2.0 and
// for anti-MEV extension.
Signature() []byte
}