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


Golang Bucket.Get方法代码示例

本文整理汇总了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
}
开发者ID:conseweb,项目名称:stcwallet,代码行数:9,代码来源:db.go

示例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
}
开发者ID:conseweb,项目名称:stcwallet,代码行数:20,代码来源:interface_test.go


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