refactor: need access data via methods

This commit is contained in:
Derrick Hammer 2024-01-07 03:55:33 -05:00
parent cb23f21ecc
commit 0a6738be5d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -5,4 +5,6 @@ import "github.com/vmihailenco/msgpack/v5"
type NodeVotes interface {
msgpack.CustomEncoder
msgpack.CustomDecoder
Good() int
Bad() int
}