本文整理匯總了Golang中github.com/FactomProject/factomd/common/interfaces.IState.LoadDBState方法的典型用法代碼示例。如果您正苦於以下問題:Golang IState.LoadDBState方法的具體用法?Golang IState.LoadDBState怎麽用?Golang IState.LoadDBState使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/FactomProject/factomd/common/interfaces.IState
的用法示例。
在下文中一共展示了IState.LoadDBState方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: FollowerExecute
func (m *DBStateMissing) FollowerExecute(state interfaces.IState) {
if len(state.NetworkOutMsgQueue()) > 1000 {
return
}
// TODO: Likely need to consider a limit on how many blocks we reply with. For now,
// just give them what they ask for.
start := m.DBHeightStart
end := m.DBHeightEnd
if end-start > 200 {
end = start + 200
}
missingone := false
for dbs := start; dbs <= end; dbs++ {
msg, err := state.LoadDBState(dbs)
if msg != nil && err == nil {
if missingone {
fmt.Println("dddd Missing some prior dbstates. Start", start, "End", end, "Found ", dbs)
}
// If I don't have this block, ignore.
msg.SetOrigin(m.GetOrigin())
msg.SetNetworkOrigin(m.GetNetworkOrigin())
msg.SendOut(state, msg)
state.IncDBStateAnswerCnt()
} else {
missingone = true
}
}
return
}