本文整理匯總了Golang中github.com/FactomProject/factomd/common/entryBlock.Entry.ExtIDs方法的典型用法代碼示例。如果您正苦於以下問題:Golang Entry.ExtIDs方法的具體用法?Golang Entry.ExtIDs怎麽用?Golang Entry.ExtIDs使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/FactomProject/factomd/common/entryBlock.Entry
的用法示例。
在下文中一共展示了Entry.ExtIDs方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: 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
}
示例2: 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
}
示例3: 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
}
示例4: 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
}
示例5: 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
}