Skip to content

Commit 22086a5

Browse files
committed
x
1 parent 6dfcef7 commit 22086a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/minicluster/create_buckets.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func injectBuckets() {
7878

7979
startNonce := uint64(1)
8080
count := uint64(4)
81-
for startNonce <= 20000 {
81+
for startNonce <= 20 {
8282
for nonce := startNonce; nonce < startNonce+count; nonce++ {
8383
fixedAmount := unit.ConvertIotxToRau(100).String()
8484
candidateName := candidateNames[rand.Intn(len(candidateNames))]

tools/minicluster/create_candidates.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func injectCandidates(addrs []*util.AddressKey) {
6464
startNonce := initNonce
6565
count := uint64(4)
6666
candNumber := uint64(1)
67-
for startNonce < initNonce+uint64(27000) {
67+
for startNonce < initNonce+uint64(27) {
6868
for nonce := startNonce; nonce < startNonce+count; nonce++ {
6969
fixedAmount := unit.ConvertIotxToRau(3000000).String()
7070
b := make([]byte, 6)

0 commit comments

Comments
 (0)