Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor fix & update #180

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*.so
*.dylib
./tape
tape
SamYuan1990 marked this conversation as resolved.
Show resolved Hide resolved

# Test binary, build with `go test -c`
*.test
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
FABRIC_VERSION = latest
INTERGATION_CASE = ANDLogic

BASE_VERSION = 0.0.2
PREV_VERSION = 0.0.1
BASE_VERSION = 0.1.3
PREV_VERSION = 0.1.2

PROJECT_NAME = tape
DOCKERIMAGE = guoger/tape
Expand All @@ -35,7 +35,7 @@ GO_TAGS ?=

export GO_LDFLAGS GO_TAGS FABRIC_VERSION INTERGATION_CASE

tape:
tape:
@echo "Building tape program......"
go build -tags "$(GO_TAGS)" -ldflags "$(GO_LDFLAGS)" ./cmd/tape

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ You could get `tape` in three ways:

#### Binary

Execute `./tape -c config.yaml -n 40000` to generate 40000 transactions to Fabric.
Execute `./tape run -c config.yaml -n 40000` to generate 40000 transactions to Fabric.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why run?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's the default command as seen there besides if you print help the usage indicates the same


#### Docker

Expand Down
2 changes: 1 addition & 1 deletion docs/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ docker build -t guoger/tape:latest .
执行如下命令即可运行测试:

```
./tape --config=config.yaml --number=40000
./tape run --config=config.yaml --number=40000
```

该命令的含义是,使用 config.yaml 作为配置文件,向 Fabric 网络发送40000条交易进行性能测试。
Expand Down