mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
sharding: notary functionality for voting on collations Former-commit-id: 3ac6bb4a7a269966dd8d526c13cce4d0f1aea680 [formerly 2d527347f708a462bfbc206a581bd9b79963ad4c] Former-commit-id: 68ac7bb8cffc3211a78e15a733101ef035ca50d4
14 lines
234 B
Go
14 lines
234 B
Go
package contracts
|
|
|
|
import (
|
|
"math/big"
|
|
)
|
|
|
|
// Registry describes the Notary Registry in the SMC.
|
|
type Registry struct {
|
|
DeregisteredPeriod *big.Int
|
|
PoolIndex *big.Int
|
|
Balance *big.Int
|
|
Deposited bool
|
|
}
|