当前位置: 首页>>代码示例>>Golang>>正文


Golang DirBlockInfo.UnmarshalBinaryData方法代码示例

本文整理汇总了Golang中github.com/FactomProject/FactomCode/common.DirBlockInfo.UnmarshalBinaryData方法的典型用法代码示例。如果您正苦于以下问题:Golang DirBlockInfo.UnmarshalBinaryData方法的具体用法?Golang DirBlockInfo.UnmarshalBinaryData怎么用?Golang DirBlockInfo.UnmarshalBinaryData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/FactomProject/FactomCode/common.DirBlockInfo的用法示例。


在下文中一共展示了DirBlockInfo.UnmarshalBinaryData方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: FetchAllUnconfirmedDirBlockInfo

// FetchAllUnconfirmedDirBlockInfo gets all of the dirBlockInfos that have BTC Anchor confirmation
func (db *LevelDb) FetchAllUnconfirmedDirBlockInfo() (dirBlockInfoMap map[string]*common.DirBlockInfo, err error) {
	db.dbLock.Lock()
	defer db.dbLock.Unlock()

	var fromkey []byte = []byte{byte(TBL_DB_INFO)}   // Table Name (1 bytes)
	var tokey []byte = []byte{byte(TBL_DB_INFO + 1)} // Table Name (1 bytes)

	dirBlockInfoMap = make(map[string]*common.DirBlockInfo)

	iter := db.lDb.NewIterator(&util.Range{Start: fromkey, Limit: tokey}, db.ro)

	for iter.Next() {
		dBInfo := new(common.DirBlockInfo)

		// The last byte stores the confirmation flag
		if iter.Value()[len(iter.Value())-1] == 0 {
			_, err := dBInfo.UnmarshalBinaryData(iter.Value())
			if err != nil {
				return dirBlockInfoMap, err
			}
			dirBlockInfoMap[dBInfo.DBMerkleRoot.String()] = dBInfo
		}
	}
	iter.Release()
	err = iter.Error()
	return dirBlockInfoMap, err
}
开发者ID:6londe,项目名称:FactomCode,代码行数:28,代码来源:dblock.go


注:本文中的github.com/FactomProject/FactomCode/common.DirBlockInfo.UnmarshalBinaryData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。