mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
10 lines
180 B
Go
10 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
|
||
|
}
|