Files
prysm/sharding/contracts/types.go
Nishant Das 1eb7451266 Implementation for the Notary to Vote on Collations (#131)
sharding: notary functionality for voting on collations

Former-commit-id: 3ac6bb4a7a269966dd8d526c13cce4d0f1aea680 [formerly 2d527347f708a462bfbc206a581bd9b79963ad4c]
Former-commit-id: 68ac7bb8cffc3211a78e15a733101ef035ca50d4
2018-06-20 14:15:05 -05:00

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
}