mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 19:42:23 +00:00
9 lines
180 B
Go
9 lines
180 B
Go
package neo
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/interop"
|
|
|
|
// Candidate represents a single native Neo candidate.
|
|
type Candidate struct {
|
|
Key interop.PublicKey
|
|
Votes int
|
|
}
|