dpos

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 9, 2019 License: GPL-3.0 Imports: 25 Imported by: 7

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (

	// ErrIllegalCandidateName not exist
	ErrIllegalCandidateName = errors.New("illegal candidate name")
	// ErrIllegalCandidatePubKey mismatch public key
	ErrIllegalCandidatePubKey = errors.New("illegal candidate pubkey")
	// ErrTooMuchRreversible too much rreversible blocks
	ErrTooMuchRreversible = errors.New("too much rreversible blocks")
	// ErrSystemTakeOver system taking over
	ErrSystemTakeOver = errors.New("system account take over")
)
View Source
var (
	// CandidateKeyPrefix candidateInfo
	CandidateKeyPrefix = "p"
	// CandidateHead all candidate key
	CandidateHead = "s"
	// ActivatedCandidateKeyPrefix candidateInfo
	ActivatedCandidateKeyPrefix = "ap"

	// CandidatePubKeyPrefix candidateInfo
	CandidatePubKeyPrefix = "pk"

	// VoterKeyPrefix voterInfo
	VoterKeyPrefix = "v"
	// VoterHead head
	VoterHead = "v"

	// TakeOver key
	TakeOver = "takeover"

	// StateKeyPrefix globalState
	StateKeyPrefix = "s"
	// LastestStateKey lastest
	LastestStateKey = "lastest"

	// Separator Split characters
	Separator = "_"
)
View Source
var DefaultConfig = &Config{
	MaxURLLen:                     512,
	UnitStake:                     big.NewInt(1000),
	CandidateMinQuantity:          big.NewInt(10),
	CandidateAvailableMinQuantity: big.NewInt(10),
	VoterMinQuantity:              big.NewInt(2),
	ActivatedMinCandidate:         3,
	ActivatedMinQuantity:          big.NewInt(100),
	BlockInterval:                 3000,
	BlockFrequency:                6,
	CandidateScheduleSize:         3,
	BackupScheduleSize:            0,
	EpochInterval:                 1080000,
	FreezeEpochSize:               3,
	AccountName:                   "ftsystemdpos",
	SystemName:                    "ftsystemio",
	SystemURL:                     "www.fractalproject.com",
	ExtraBlockReward:              big.NewInt(1),
	BlockReward:                   big.NewInt(5),
	Decimals:                      18,
	AssetID:                       1,
	ReferenceTime:                 1555776000000 * uint64(time.Millisecond),
}

DefaultConfig configures

View Source
var (
	// InvalidIndex magic number
	InvalidIndex = uint64(math.MaxUint64)
)

Functions

func Genesis

func Genesis(cfg *Config, state *state.StateDB, timestamp uint64, number uint64) error

Genesis dpos genesis store

Types

type API

type API struct {
	// contains filtered or unexported fields
}

API exposes dpos related methods for the RPC interface.

func (*API) AvailableStake added in v0.0.8

func (api *API) AvailableStake(epoch uint64, voter string) (*big.Int, error)

AvailableStake get available stake that can vote candidate

func (*API) BrowserAllEpoch added in v0.0.23

func (api *API) BrowserAllEpoch() (interface{}, error)

BrowserAllEpoch get all epoch info for browser api

func (*API) BrowserAllEpoch2 added in v0.0.30

func (api *API) BrowserAllEpoch2() (interface{}, error)

BrowserAllEpoch2 get all epoch info for browser api

func (*API) BrowserEpochRecord added in v0.0.23

func (api *API) BrowserEpochRecord(reqEpochNumber uint64) (interface{}, error)

BrowserEpochRecord get epoch info for browser api

func (*API) BrowserVote added in v0.0.23

func (api *API) BrowserVote(reqEpochNumber uint64) (interface{}, error)

BrowserVote get epoch info for browser api

func (*API) Candidate added in v0.0.8

func (api *API) Candidate(epoch uint64, name string) (interface{}, error)

Candidate get candidate info

func (*API) Candidates added in v0.0.8

func (api *API) Candidates(epoch uint64, detail bool) (interface{}, error)

Candidates get all candidates info

func (*API) CandidatesSize added in v0.0.16

func (api *API) CandidatesSize(epoch uint64) (uint64, error)

CandidatesSize get candidates size

func (*API) Epoch added in v0.0.16

func (api *API) Epoch(height uint64) (uint64, error)

Epoch get epoch number by height

func (*API) GetActivedCandidate added in v0.0.15

func (api *API) GetActivedCandidate(epoch uint64, index uint64) (interface{}, error)

GetActivedCandidate get actived candidate info

func (*API) GetActivedCandidateSize added in v0.0.15

func (api *API) GetActivedCandidateSize(epoch uint64) (uint64, error)

GetActivedCandidateSize get actived candidate size

func (*API) Info

func (api *API) Info() interface{}

Info get dpos config info

func (*API) Irreversible

func (api *API) Irreversible() interface{}

Irreversible get irreversible info

func (*API) NextEpoch added in v0.0.16

func (api *API) NextEpoch(epoch uint64) (uint64, error)

NextEpoch get next epoch number by epoch

func (*API) NextValidCandidates added in v0.0.8

func (api *API) NextValidCandidates() (interface{}, error)

NextValidCandidates next valid candidates

func (*API) PrevEpoch added in v0.0.16

func (api *API) PrevEpoch(epoch uint64) (uint64, error)

PrevEpoch get prev epoch number by epoch

func (*API) SnapShotStake added in v0.0.24

func (api *API) SnapShotStake(epoch uint64, name string) (interface{}, error)

SnapShotStake get snapshot stake

func (*API) SnapShotTime added in v0.0.8

func (api *API) SnapShotTime(epoch uint64) (interface{}, error)

SnapShotTime get snapshot timestamp

func (*API) ValidCandidates added in v0.0.8

func (api *API) ValidCandidates(epoch uint64) (interface{}, error)

ValidCandidates get valid candidates

func (*API) VoterInfo added in v0.0.30

func (api *API) VoterInfo(reqEpochNumber uint64) (interface{}, error)

VoterInfo get epoch info for fractal api

func (*API) VotersByCandidate added in v0.0.8

func (api *API) VotersByCandidate(epoch uint64, candidate string, detail bool) (interface{}, error)

VotersByCandidate get voters info of candidate

func (*API) VotersByVoter added in v0.0.8

func (api *API) VotersByVoter(epoch uint64, voter string, detail bool) (interface{}, error)

VotersByVoter get voters info of voter

type ArrayCandidateInfoForBrowser added in v0.0.23

type ArrayCandidateInfoForBrowser struct {
	Data                        []*CandidateInfoForBrowser `json:"data"`
	BadCandidateIndexSchedule   []uint64                   `json:"bad"`
	UsingCandidateIndexSchedule []uint64                   `json:"using"`
	TakeOver                    bool                       `json:"takeOver"`
	Dpos                        bool                       `json:"dpos"`
}

ArrayCandidateInfoForBrowser dpos state

type CandidateInfo added in v0.0.8

type CandidateInfo struct {
	Epoch         uint64        `json:"epoch"`
	Name          string        `json:"name"`          // candidate name
	Info          string        `json:"info"`          // candidate url
	Quantity      *big.Int      `json:"quantity"`      // candidate stake quantity
	TotalQuantity *big.Int      `json:"totalQuantity"` // candidate total stake quantity
	Number        uint64        `json:"number"`        // timestamp
	Counter       uint64        `json:"shouldCounter"`
	ActualCounter uint64        `json:"actualCounter"`
	Type          CandidateType `json:"type"`
	PrevKey       string        `json:"-"`
	NextKey       string        `json:"-"`
	PubKey        common.PubKey `json:"pubkey" rlp:"-"`
}

CandidateInfo info

type CandidateInfoArray added in v0.0.8

type CandidateInfoArray []*CandidateInfo

CandidateInfoArray array of candidate

func (CandidateInfoArray) Len added in v0.0.8

func (prods CandidateInfoArray) Len() int

func (CandidateInfoArray) Less added in v0.0.8

func (prods CandidateInfoArray) Less(i, j int) bool

func (CandidateInfoArray) Swap added in v0.0.8

func (prods CandidateInfoArray) Swap(i, j int)

type CandidateInfoForBrowser added in v0.0.23

type CandidateInfoForBrowser struct {
	Candidate        string `json:"candidate"`
	Holder           string `json:"holder"`
	Quantity         string `json:"quantity"`
	TotalQuantity    string `json:"totalQuantity"`
	Counter          uint64 `json:"shouldCounter"`
	ActualCounter    uint64 `json:"actualCounter"`
	NowCounter       uint64 `json:"nowShouldCounter"`
	NowActualCounter uint64 `json:"nowActualCounter"`
}

CandidateInfoForBrowser dpos state

type CandidateType added in v0.0.8

type CandidateType uint64

CandidateType candidate status

const (
	// Normal reg
	Normal CandidateType = iota
	// Freeze unreg bug not del
	Freeze
	// Black in black list
	Black
	// Jail in jail list
	Jail
	// Unkown not support
	Unkown
)

func (CandidateType) MarshalJSON added in v0.0.8

func (t CandidateType) MarshalJSON() ([]byte, error)

MarshalJSON returns the hex representation of a.

func (CandidateType) MarshalText added in v0.0.8

func (t CandidateType) MarshalText() ([]byte, error)

MarshalText returns the hex representation of a. Implements encoding.TextMarshaler is supported by most codec implementations (e.g. for yaml or toml).

func (*CandidateType) UnmarshalJSON added in v0.0.8

func (t *CandidateType) UnmarshalJSON(data []byte) error

UnmarshalJSON parses a type in syntax.

func (*CandidateType) UnmarshalText added in v0.0.8

func (t *CandidateType) UnmarshalText(input []byte) error

UnmarshalText parses a hash in syntax.

type Config

type Config struct {
	// consensus fileds
	MaxURLLen                     uint64   `json:"maxURLLen"`                     // url length
	UnitStake                     *big.Int `json:"unitStake"`                     // state unit
	CandidateMinQuantity          *big.Int `json:"candidateMinQuantity"`          // min quantity
	CandidateAvailableMinQuantity *big.Int `json:"candidateAvailableMinQuantity"` // min quantity
	VoterMinQuantity              *big.Int `json:"voterMinQuantity"`              // min quantity
	ActivatedMinCandidate         uint64   `json:"activatedMinCandidate"`
	ActivatedMinQuantity          *big.Int `json:"activatedMinQuantity"` // min active quantity
	BlockInterval                 uint64   `json:"blockInterval"`
	BlockFrequency                uint64   `json:"blockFrequency"`
	CandidateScheduleSize         uint64   `json:"candidateScheduleSize"`
	BackupScheduleSize            uint64   `json:"backupScheduleSize"`
	EpochInterval                 uint64   `json:"epochInterval"`
	FreezeEpochSize               uint64   `json:"freezeEpochSize"`
	AccountName                   string   `json:"accountName"`
	SystemName                    string   `json:"systemName"`
	SystemURL                     string   `json:"systemURL"`
	ExtraBlockReward              *big.Int `json:"extraBlockReward"`
	BlockReward                   *big.Int `json:"blockReward"`
	Decimals                      uint64   `json:"decimals"`
	AssetID                       uint64   `json:"assetID"`
	ReferenceTime                 uint64   `json:"referenceTime"`
	// contains filtered or unexported fields
}

Config dpos configures

func (*Config) IsValid added in v0.0.21

func (cfg *Config) IsValid() error

IsValid config validate

type Dpos

type Dpos struct {
	// contains filtered or unexported fields
}

Dpos dpos engine

func New

func New(config *Config, chain consensus.IChainReader) *Dpos

New creates a DPOS consensus engine

func (*Dpos) APIs

func (dpos *Dpos) APIs(chain consensus.IChainReader) []rpc.API

APIs returning the user facing RPC APIs.

func (*Dpos) Author

func (dpos *Dpos) Author(header *types.Header) (common.Name, error)

Author implements consensus.Engine, returning the header's coinbase

func (*Dpos) BlockInterval

func (dpos *Dpos) BlockInterval() uint64

BlockInterval block interval

func (*Dpos) CalcBFTIrreversible added in v0.0.7

func (dpos *Dpos) CalcBFTIrreversible() uint64

CalcBFTIrreversible calc irreversible

func (*Dpos) CalcDifficulty

func (dpos *Dpos) CalcDifficulty(chain consensus.IChainReader, time uint64, parent *types.Header) *big.Int

CalcDifficulty is the difficulty adjustment algorithm. It returns the difficulty that a new block should have when created at time given the parent block's time and difficulty.

func (*Dpos) CalcProposedIrreversible added in v0.0.7

func (dpos *Dpos) CalcProposedIrreversible(chain consensus.IChainReader, parent *types.Header, strict bool) uint64

CalcProposedIrreversible calc irreversible

func (*Dpos) Config

func (dpos *Dpos) Config() *Config

Config return dpos config

func (*Dpos) Engine

func (dpos *Dpos) Engine() consensus.IEngine

Engine an engine

func (*Dpos) Finalize

func (dpos *Dpos) Finalize(chain consensus.IChainReader, header *types.Header, txs []*types.Transaction, receipts []*types.Receipt, state *state.StateDB) (*types.Block, error)

Finalize assembles the final block.

func (*Dpos) GetActivedCandidate added in v0.0.11

func (dpos *Dpos) GetActivedCandidate(state *state.StateDB, epoch uint64, index uint64) (string, *big.Int, *big.Int, uint64, uint64, uint64, bool, error)

GetActivedCandidate get actived candidate info

func (*Dpos) GetActivedCandidateSize added in v0.0.11

func (dpos *Dpos) GetActivedCandidateSize(state *state.StateDB, epoch uint64) (uint64, error)

GetActivedCandidateSize get actived candidate size

func (*Dpos) GetCandidateStake added in v0.0.11

func (dpos *Dpos) GetCandidateStake(state *state.StateDB, epoch uint64, candidate string) (*big.Int, error)

GetCandidateStake candidate delegate stake

func (*Dpos) GetDelegatedByTime added in v0.0.7

func (dpos *Dpos) GetDelegatedByTime(state *state.StateDB, candidate string, timestamp uint64) (*big.Int, error)

GetDelegatedByTime get delegate of candidate

func (*Dpos) GetEpoch added in v0.0.22

func (dpos *Dpos) GetEpoch(state *state.StateDB, t uint64, curEpoch uint64) (epoch uint64, time uint64, err error)

GetEpoch get epoch and epoch start time by type

func (*Dpos) GetVoterStake added in v0.0.11

func (dpos *Dpos) GetVoterStake(state *state.StateDB, epoch uint64, voter string, candidate string) (*big.Int, error)

GetVoterStake voter stake

func (*Dpos) IsValidateCandidate added in v0.0.8

func (dpos *Dpos) IsValidateCandidate(chain consensus.IChainReader, parent *types.Header, timestamp uint64, candidate string, pubkeys [][]byte, state *state.StateDB, force bool, fid uint64) error

IsValidateCandidate current candidate

func (*Dpos) Prepare

func (dpos *Dpos) Prepare(chain consensus.IChainReader, header *types.Header, txs []*types.Transaction, receipts []*types.Receipt, state *state.StateDB) error

Prepare initializes the consensus fields of a block header according to the rules of a particular engine. The changes are executed inline.

func (*Dpos) ProcessAction

func (dpos *Dpos) ProcessAction(fid uint64, number uint64, chainCfg *params.ChainConfig, state *state.StateDB, action *types.Action) ([]*types.InternalAction, error)

ProcessAction exec action

func (*Dpos) Seal

func (dpos *Dpos) Seal(chain consensus.IChainReader, block *types.Block, stop <-chan struct{}) (*types.Block, error)

Seal generates a new block for the given input block with the local miner's seal place on top.

func (*Dpos) SetConfig

func (dpos *Dpos) SetConfig(config *Config)

SetConfig set dpos config

func (*Dpos) SetSignFn

func (dpos *Dpos) SetSignFn(signFn SignFn)

SetSignFn set signature function

func (*Dpos) Slot

func (dpos *Dpos) Slot(timestamp uint64) uint64

Slot slot

func (*Dpos) VerifySeal

func (dpos *Dpos) VerifySeal(chain consensus.IChainReader, header *types.Header) error

VerifySeal checks whether the crypto seal on a header is valid according to the consensus rules of the given engine.

type Epoch added in v0.0.23

type Epoch struct {
	Start uint64 `json:"start"`
	Epoch uint64 `json:"epoch"`
}

Epoch timestamp & epoch number

type Epochs added in v0.0.23

type Epochs struct {
	Data []*Epoch `json:"data"`
}

Epochs array of epcho

type GlobalState added in v0.0.8

type GlobalState struct {
	Epoch                       uint64   `json:"epoch"`                       // epoch
	PreEpoch                    uint64   `json:"preEpoch"`                    // epoch
	ActivatedCandidateSchedule  []string `json:"activatedCandidateSchedule"`  // candidates
	ActivatedTotalQuantity      *big.Int `json:"activatedTotalQuantity"`      // the sum of activate candidate votes
	BadCandidateIndexSchedule   []uint64 `json:"badCandidateIndexSchedule"`   // activated backup candidates
	UsingCandidateIndexSchedule []uint64 `json:"usingCandidateIndexSchedule"` // activated backup candidates
	TotalQuantity               *big.Int `json:"totalQuantity"`               // the sum of all candidate votes
	TakeOver                    bool     `json:"takeOver"`                    // systemio take over dpos
	Dpos                        bool     `json:"dpos"`                        // dpos status
	Number                      uint64   `json:"number"`                      // timestamp
}

GlobalState dpos state

type IDB

type IDB interface {
	SetCandidate(*CandidateInfo) error
	DelCandidate(uint64, string) error
	GetCandidate(uint64, string) (*CandidateInfo, error)
	GetCandidates(uint64) (CandidateInfoArray, error)
	CandidatesSize(uint64) (uint64, error)

	SetActivatedCandidate(uint64, *CandidateInfo) error
	GetActivatedCandidate(uint64) (*CandidateInfo, error)

	SetAvailableQuantity(uint64, string, *big.Int) error
	GetAvailableQuantity(uint64, string) (*big.Int, error)

	SetVoter(*VoterInfo) error
	GetVoter(uint64, string, string) (*VoterInfo, error)
	GetVotersByVoter(uint64, string) ([]*VoterInfo, error)
	GetVotersByCandidate(uint64, string) ([]*VoterInfo, error)

	SetState(*GlobalState) error
	GetState(uint64) (*GlobalState, error)
	SetLastestEpoch(uint64) error
	GetLastestEpoch() (uint64, error)

	SetTakeOver(uint64) error
	GetTakeOver() (uint64, error)

	Undelegate(string, *big.Int) (*types.Action, error)
	IncAsset2Acct(string, string, *big.Int, uint64) (*types.Action, error)
	GetBalanceByTime(name string, timestamp uint64) (*big.Int, error)
	GetCandidateInfoByTime(epoch uint64, name string, timestamp uint64) (*CandidateInfo, error)

	CanMine(name string, pub []byte) error
}

IDB dpos database

type IDatabase

type IDatabase interface {
	Get(key string) ([]byte, error)
	Put(key string, value []byte) error
	Delete(key string) error

	Undelegate(string, *big.Int) (*types.Action, error)
	IncAsset2Acct(string, string, *big.Int, uint64) (*types.Action, error)
	GetBalanceByTime(name string, timestamp uint64) (*big.Int, error)
	IsValidSign(name string, pubkey []byte) error
	GetSnapshot(key string, timestamp uint64) ([]byte, error)
}

IDatabase level db

type KickedCandidate added in v0.0.8

type KickedCandidate struct {
	Candidates []string
}

KickedCandidate kicked info

type LDB

type LDB struct {
	IDatabase
}

LDB dpos level db

func NewLDB

func NewLDB(db IDatabase) (*LDB, error)

NewLDB new object

func (*LDB) CanMine added in v1.0.0

func (db *LDB) CanMine(name string, pub []byte) error

CanMine allow mining block

func (*LDB) CandidatesSize added in v0.0.8

func (db *LDB) CandidatesSize(epoch uint64) (uint64, error)

CandidatesSize candidate len

func (*LDB) DelCandidate added in v0.0.8

func (db *LDB) DelCandidate(epoch uint64, name string) error

DelCandidate del candidate info

func (*LDB) GetActivatedCandidate added in v0.0.23

func (db *LDB) GetActivatedCandidate(index uint64) (*CandidateInfo, error)

GetActivatedCandidate get activated candidate info

func (*LDB) GetAvailableQuantity added in v0.0.8

func (db *LDB) GetAvailableQuantity(epoch uint64, voter string) (*big.Int, error)

GetAvailableQuantity get quantity

func (*LDB) GetCandidate added in v0.0.8

func (db *LDB) GetCandidate(epoch uint64, name string) (*CandidateInfo, error)

GetCandidate get candidate info by name

func (*LDB) GetCandidateInfoByTime added in v0.0.11

func (db *LDB) GetCandidateInfoByTime(epoch uint64, candidate string, timestamp uint64) (*CandidateInfo, error)

GetCandidateInfoByTime candidate info

func (*LDB) GetCandidates added in v0.0.8

func (db *LDB) GetCandidates(epoch uint64) (CandidateInfoArray, error)

GetCandidates get all candidate info & sort

func (*LDB) GetLastestEpoch added in v0.0.16

func (db *LDB) GetLastestEpoch() (uint64, error)

GetLastestEpoch get latest epoch

func (*LDB) GetState

func (db *LDB) GetState(epoch uint64) (*GlobalState, error)

GetState get state info

func (*LDB) GetTakeOver added in v0.0.23

func (db *LDB) GetTakeOver() (uint64, error)

GetTakeOver get activated candidate info

func (*LDB) GetVoter

func (db *LDB) GetVoter(epoch uint64, voter string, candidate string) (*VoterInfo, error)

GetVoter voter info by name

func (*LDB) GetVotersByCandidate added in v0.0.8

func (db *LDB) GetVotersByCandidate(epoch uint64, candidate string) ([]*VoterInfo, error)

GetVotersByCandidate voters info by candidate

func (*LDB) GetVotersByVoter added in v0.0.8

func (db *LDB) GetVotersByVoter(epoch uint64, voter string) ([]*VoterInfo, error)

GetVotersByVoter voters info by voter

func (*LDB) SetActivatedCandidate added in v0.0.23

func (db *LDB) SetActivatedCandidate(index uint64, candidate *CandidateInfo) error

SetActivatedCandidate update activated candidate info

func (*LDB) SetAvailableQuantity added in v0.0.8

func (db *LDB) SetAvailableQuantity(epoch uint64, voter string, quantity *big.Int) error

SetAvailableQuantity set quantity

func (*LDB) SetCandidate added in v0.0.8

func (db *LDB) SetCandidate(candidate *CandidateInfo) error

SetCandidate update candidate info

func (*LDB) SetLastestEpoch added in v0.0.16

func (db *LDB) SetLastestEpoch(epoch uint64) error

SetLastestEpoch set latest epoch

func (*LDB) SetState

func (db *LDB) SetState(gstate *GlobalState) error

SetState set global state info

func (*LDB) SetTakeOver added in v0.0.23

func (db *LDB) SetTakeOver(epoch uint64) error

SetTakeOver update activated candidate info

func (*LDB) SetVoter

func (db *LDB) SetVoter(voter *VoterInfo) error

SetVoter update voter info

type RegisterCandidate added in v0.0.8

type RegisterCandidate struct {
	Info string
}

RegisterCandidate candidate info

type RemoveKickedCandidate added in v0.0.23

type RemoveKickedCandidate struct {
	Candidates []string
}

RemoveKickedCandidate remove kicked info

type SignFn

type SignFn func([]byte, *state.StateDB) ([]byte, error)

SignFn signature function

type System

type System struct {
	IDB
	// contains filtered or unexported fields
}

System dpos internal contract

func NewSystem added in v0.0.7

func NewSystem(state *state.StateDB, config *Config) *System

NewSystem new object

func (*System) ExitTakeOver added in v0.0.7

func (sys *System) ExitTakeOver(epoch uint64, number uint64, fid uint64) error

ExitTakeOver system exit take over

func (*System) KickedCandidate added in v0.0.8

func (sys *System) KickedCandidate(epoch uint64, candidate string, number uint64, fid uint64) error

KickedCandidate kicked

func (*System) RefundCandidate added in v0.0.8

func (sys *System) RefundCandidate(epoch uint64, candidate string, number uint64, fid uint64) error

RefundCandidate refund a candidate

func (*System) RegCandidate added in v0.0.8

func (sys *System) RegCandidate(epoch uint64, candidate string, url string, stake *big.Int, number uint64, fid uint64) error

RegCandidate register a candidate

func (*System) RemoveKickedCandidate added in v0.0.23

func (sys *System) RemoveKickedCandidate(epoch uint64, candidate string, number uint64, fid uint64) error

RemoveKickedCandidate remove

func (*System) UnregCandidate added in v0.0.8

func (sys *System) UnregCandidate(epoch uint64, candidate string, number uint64, fid uint64) error

UnregCandidate unregister a candidate

func (*System) UpdateCandidate added in v0.0.8

func (sys *System) UpdateCandidate(epoch uint64, candidate string, info string, nstake *big.Int, number uint64, fid uint64) error

UpdateCandidate update a candidate

func (*System) UpdateElectedCandidates0 added in v0.0.23

func (sys *System) UpdateElectedCandidates0(pepoch uint64, epoch uint64, number uint64, miner string) error

UpdateElectedCandidates0 update

func (*System) UpdateElectedCandidates1 added in v0.0.23

func (sys *System) UpdateElectedCandidates1(pepoch uint64, epoch uint64, number uint64, miner string) error

UpdateElectedCandidates1 update

func (*System) VoteCandidate added in v0.0.8

func (sys *System) VoteCandidate(epoch uint64, voter string, candidate string, stake *big.Int, number uint64, fid uint64) error

VoteCandidate vote a candidate

type UInt64Slice

type UInt64Slice []uint64

UInt64Slice attaches the methods of sort.Interface to []uint64, sorting in increasing order.

func (UInt64Slice) Len

func (s UInt64Slice) Len() int

func (UInt64Slice) Less

func (s UInt64Slice) Less(i, j int) bool

func (UInt64Slice) Swap

func (s UInt64Slice) Swap(i, j int)

type UpdateCandidate added in v0.0.8

type UpdateCandidate struct {
	Info string
}

UpdateCandidate candidate info

type UpdateCandidatePubKey added in v1.0.0

type UpdateCandidatePubKey struct {
	PubKey common.PubKey
}

UpdateCandidatePubKey candidate info

type VoteCandidate added in v0.0.8

type VoteCandidate struct {
	Candidate string
	Stake     *big.Int
}

VoteCandidate vote info

type VoteEpoch added in v1.0.0

type VoteEpoch struct {
	Start uint64 `json:"start"`
	Epoch uint64 `json:"epoch"`
	Dpos  uint64 `json:"dpos"`
}

VoteEpoch timestamp & epoch number & dpos status

type VoteEpochs added in v1.0.0

type VoteEpochs struct {
	Data []*VoteEpoch `json:"data"`
}

VoteEpochs array of epcho

type VoterInfo added in v0.0.8

type VoterInfo struct {
	Epoch               uint64   `json:"epoch"`
	Name                string   `json:"name"`      // voter name
	Candidate           string   `json:"candidate"` // candidate approved by this voter
	Quantity            *big.Int `json:"quantity"`  // stake approved by this voter
	Number              uint64   `json:"number"`    // timestamp
	NextKeyForVoter     string   `json:"-"`
	NextKeyForCandidate string   `json:"-"`
}

VoterInfo info

type VoterInfoFractal added in v0.0.30

type VoterInfoFractal struct {
	Candidate     string `json:"candidate"`
	Holder        string `json:"holder"`
	Quantity      string `json:"quantity"`
	TotalQuantity string `json:"totalQuantity"`
	Info          string `json:"info"`
	State         uint64 `json:"state"`
	Vote          uint64 `json:"vote"`
	CanVote       bool   `json:"canVote"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL