本文整理汇总了Golang中github.com/conseweb/stcwallet/walletdb.Bucket.Get方法的典型用法代码示例。如果您正苦于以下问题:Golang Bucket.Get方法的具体用法?Golang Bucket.Get怎么用?Golang Bucket.Get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/conseweb/stcwallet/walletdb.Bucket
的用法示例。
在下文中一共展示了Bucket.Get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: fetchMinedBalance
func fetchMinedBalance(ns walletdb.Bucket) (coinutil.Amount, error) {
v := ns.Get(rootMinedBalance)
if len(v) != 8 {
str := fmt.Sprintf("balance: short read (expected 8 bytes, "+
"read %v)", len(v))
return 0, storeError(ErrData, str, nil)
}
return coinutil.Amount(byteOrder.Uint64(v)), nil
}
示例2: testGetValues
// testGetValues checks that all of the provided key/value pairs can be
// retrieved from the database and the retrieved values match the provided
// values.
func testGetValues(tc *testContext, bucket walletdb.Bucket, values map[string]string) bool {
for k, v := range values {
var vBytes []byte
if v != "" {
vBytes = []byte(v)
}
gotValue := bucket.Get([]byte(k))
if !reflect.DeepEqual(gotValue, vBytes) {
tc.t.Errorf("Get: unexpected value - got %s, want %s",
gotValue, vBytes)
return false
}
}
return true
}