Ai
1 Star 0 Fork 0

peter/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ledger_filepath.go 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
Chongxin Luo 提交于 2020-01-27 22:52 +08:00 . Fix file license header.
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package kvledger
import (
"path/filepath"
)
func fileLockPath(rootFSPath string) string {
return filepath.Join(rootFSPath, "fileLock")
}
// LedgerProviderPath returns the absolute path of ledgerprovider
func LedgerProviderPath(rootFSPath string) string {
return filepath.Join(rootFSPath, "ledgerProvider")
}
// BlockStorePath returns the absolute path of block storage
func BlockStorePath(rootFSPath string) string {
return filepath.Join(rootFSPath, "chains")
}
// PvtDataStorePath returns the absolute path of pvtdata storage
func PvtDataStorePath(rootFSPath string) string {
return filepath.Join(rootFSPath, "pvtdataStore")
}
// StateDBPath returns the absolute path of state level DB
func StateDBPath(rootFSPath string) string {
return filepath.Join(rootFSPath, "stateLeveldb")
}
// HistoryDBPath returns the absolute path of history DB
func HistoryDBPath(rootFSPath string) string {
return filepath.Join(rootFSPath, "historyLeveldb")
}
// ConfigHistoryDBPath returns the absolute path of configHistory DB
func ConfigHistoryDBPath(rootFSPath string) string {
return filepath.Join(rootFSPath, "configHistory")
}
// BookkeeperDBPath return the absolute path of bookkeeper DB
func BookkeeperDBPath(rootFSPath string) string {
return filepath.Join(rootFSPath, "bookkeeper")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v2.1.1

搜索帮助