當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Entry.ChainID方法代碼示例

本文整理匯總了Golang中github.com/FactomProject/factomd/common/entryBlock.Entry.ChainID方法的典型用法代碼示例。如果您正苦於以下問題:Golang Entry.ChainID方法的具體用法?Golang Entry.ChainID怎麽用?Golang Entry.ChainID使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/FactomProject/factomd/common/entryBlock.Entry的用法示例。


在下文中一共展示了Entry.ChainID方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: CreateFirstAnchorEntry

func CreateFirstAnchorEntry() *entryBlock.Entry {
	answer := new(entryBlock.Entry)

	answer.Version = 0
	answer.ExtIDs = []primitives.ByteSlice{primitives.ByteSlice{Bytes: []byte("FactomAnchorChain")}}
	answer.Content = primitives.ByteSlice{Bytes: []byte("This is the Factom anchor chain, which records the anchors Factom puts on Bitcoin and other networks.\n")}
	answer.ChainID = entryBlock.NewChainID(answer)

	return answer
}
開發者ID:FactomProject,項目名稱:factomd,代碼行數:10,代碼來源:eBlock.go

示例2: CreateNewEntry

func CreateNewEntry() *entryBlock.Entry {
	chain := CreateNewChain()

	entry := new(entryBlock.Entry)
	entry.ChainID = chain.GetChainID()
	entry.Content = primitives.ByteSlice{Bytes: []byte(FAddressStr)}
	entry.ExtIDs = []primitives.ByteSlice{primitives.ByteSlice{Bytes: []byte(ECAddressStr)}}

	return entry
}
開發者ID:FactomProject,項目名稱:factomd,代碼行數:10,代碼來源:longTests.go

示例3: CreateFirstTestEntry

func CreateFirstTestEntry() *entryBlock.Entry {
	answer := new(entryBlock.Entry)

	answer.Version = 1
	answer.ExtIDs = []primitives.ByteSlice{primitives.ByteSlice{Bytes: []byte("Test1")}, primitives.ByteSlice{Bytes: []byte("Test2")}}
	answer.Content = primitives.ByteSlice{Bytes: []byte("Test content, please ignore")}
	answer.ChainID = entryBlock.NewChainID(answer)

	return answer
}
開發者ID:FactomProject,項目名稱:factomd,代碼行數:10,代碼來源:eBlock.go

示例4: CreateNewChain

func CreateNewChain() *entryBlock.Entry {
	answer := new(entryBlock.Entry)

	answer.Version = 0
	answer.ExtIDs = []primitives.ByteSlice{primitives.ByteSlice{Bytes: FKey.Key[:]}}
	answer.Content = primitives.ByteSlice{Bytes: FKey.Public()}
	answer.ChainID = entryBlock.NewChainID(answer)

	return answer
}
開發者ID:FactomProject,項目名稱:factomd,代碼行數:10,代碼來源:longTests.go

示例5: newRevealEntry

func newRevealEntry() *RevealEntryMsg {
	re := new(RevealEntryMsg)

	entry := new(entryBlock.Entry)

	entry.ExtIDs = make([][]byte, 0, 5)
	entry.ExtIDs = append(entry.ExtIDs, []byte("1asdfadfasdf"))
	entry.ExtIDs = append(entry.ExtIDs, []byte(""))
	entry.ExtIDs = append(entry.ExtIDs, []byte("3"))
	entry.ChainID = new(primitives.Hash)
	entry.ChainID.SetBytes(constants.EC_CHAINID)

	entry.Content = []byte("1asdf asfas dfsg\"08908098(*)*^*&%&%&$^#%##%[email protected][email protected]#$!$#!$#@[email protected]!#@!%#@^$#^&$*%())_+_*^*&^&\"\"?>?<<>/./,")

	re.Entry = entry

	return re
}
開發者ID:jjdevbiz,項目名稱:factomd,代碼行數:18,代碼來源:reavealEntry_test.go


注:本文中的github.com/FactomProject/factomd/common/entryBlock.Entry.ChainID方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。