Skip to content

Commit 148d070

Browse files
committed
Fix scroll-zkevm to scroll-prover in other code.
1 parent 2ae5474 commit 148d070

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

common/types/message/message.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ type Identity struct {
6363
// Unverified Unix timestamp of message creation
6464
Timestamp uint32 `json:"timestamp"`
6565
// Version is common.Version+ZkVersion. Use the following to check the latest ZkVersion version.
66-
// curl -sL https://api.github.com/repos/scroll-tech/scroll-zkevm/commits | jq -r ".[0].sha"
66+
// curl -sL https://api.github.com/repos/scroll-tech/scroll-prover/commits | jq -r ".[0].sha"
6767
Version string `json:"version"`
6868
// Random unique token generated by manager
6969
Token string `json:"token"`

common/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var commit = func() string {
2222
return ""
2323
}()
2424

25-
// ZkVersion is commit-id of common/libzkp/impl/cargo.lock/scroll-zkevm
25+
// ZkVersion is commit-id of common/libzkp/impl/cargo.lock/scroll-prover
2626
var ZkVersion string
2727

2828
// Version denote the version of scroll protocol, including the l2geth, relayer, coordinator, roller, contracts and etc.

coordinator/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ IMAGE_VERSION=latest
55
REPO_ROOT_DIR=./..
66

77
ifeq (4.3,$(firstword $(sort $(MAKE_VERSION) 4.3)))
8-
ZKEVM_VERSION=$(shell grep -m 1 "scroll-zkevm" ../common/libzkp/impl/Cargo.lock | cut -d "#" -f2 | cut -c-7)
8+
ZKEVM_VERSION=$(shell grep -m 1 "scroll-prover" ../common/libzkp/impl/Cargo.lock | cut -d "#" -f2 | cut -c-7)
99
HALO2_VERSION=$(shell grep -m 1 "halo2.git" ../common/libzkp/impl/Cargo.lock | cut -d "#" -f2 | cut -c-7)
1010
else
11-
ZKEVM_VERSION=$(shell grep -m 1 "scroll-zkevm" ../common/libzkp/impl/Cargo.lock | cut -d "\#" -f2 | cut -c-7)
11+
ZKEVM_VERSION=$(shell grep -m 1 "scroll-prover" ../common/libzkp/impl/Cargo.lock | cut -d "\#" -f2 | cut -c-7)
1212
HALO2_VERSION=$(shell grep -m 1 "halo2.git" ../common/libzkp/impl/Cargo.lock | cut -d "\#" -f2 | cut -c-7)
1313
endif
1414

roller/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ IMAGE_NAME=go-roller
44
IMAGE_VERSION=latest
55

66
ifeq (4.3,$(firstword $(sort $(MAKE_VERSION) 4.3)))
7-
ZKEVM_VERSION=$(shell grep -m 1 "scroll-zkevm" ../common/libzkp/impl/Cargo.lock | cut -d "#" -f2 | cut -c-7)
7+
ZKEVM_VERSION=$(shell grep -m 1 "scroll-prover" ../common/libzkp/impl/Cargo.lock | cut -d "#" -f2 | cut -c-7)
88
HALO2_VERSION=$(shell grep -m 1 "halo2.git" ../common/libzkp/impl/Cargo.lock | cut -d "#" -f2 | cut -c-7)
99
else
10-
ZKEVM_VERSION=$(shell grep -m 1 "scroll-zkevm" ../common/libzkp/impl/Cargo.lock | cut -d "\#" -f2 | cut -c-7)
10+
ZKEVM_VERSION=$(shell grep -m 1 "scroll-prover" ../common/libzkp/impl/Cargo.lock | cut -d "\#" -f2 | cut -c-7)
1111
HALO2_VERSION=$(shell grep -m 1 "halo2.git" ../common/libzkp/impl/Cargo.lock | cut -d "\#" -f2 | cut -c-7)
1212
endif
1313

@@ -42,7 +42,7 @@ test-gpu-prover: libzkp
4242
go test -tags="gpu ffi" -timeout 0 -v ./prover
4343

4444
lastest-zk-version:
45-
curl -sL https://api.github.com/repos/scroll-tech/scroll-zkevm/commits | jq -r ".[0].sha"
45+
curl -sL https://api.github.com/repos/scroll-tech/scroll-prover/commits | jq -r ".[0].sha"
4646

4747
lint: ## Lint the files - used for CI
4848
cp -r ../common/libzkp/interface ./prover/lib

0 commit comments

Comments
 (0)