Skip to content

Commit df699b2

Browse files
committed
fix(): add gateway3 get block hash_list
1 parent 42ba32a commit df699b2

File tree

4 files changed

+72
-8
lines changed

4 files changed

+72
-8
lines changed

blocks.go

+52-7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"github.com/everFinance/goar"
88
"github.com/everFinance/goar/types"
99
"github.com/everFinance/goar/utils"
10+
"gopkg.in/h2non/gentleman.v2"
1011
"strings"
1112
)
1213

@@ -23,13 +24,16 @@ func GetBlockIdxs(startHeight int64, arCli *goar.Client) (*BlockIdxs, error) {
2324
return nil, err
2425
}
2526
endHeight := info.Height
26-
27-
// get block hash_list from trust node
28-
spiltList, err := GetBlockHashList(arCli, startHeight, endHeight)
27+
// get block hash_list from gateway3
28+
spiltList, err := GetBlockHashListByGateway3(startHeight, endHeight)
2929
if err != nil {
30-
log.Error("GetBlockHashList(arCli,startHeight,endHeight)", "err", err)
31-
// get block hash_list from no-trust node
32-
spiltList, err = GetBlockHashListFromPeers(arCli, startHeight, endHeight, 5)
30+
// get block hash_list from trust node
31+
spiltList, err = GetBlockHashList(arCli, startHeight, endHeight)
32+
if err != nil {
33+
log.Error("GetBlockHashList(arCli,startHeight,endHeight)", "err", err)
34+
// get block hash_list from no-trust node
35+
spiltList, err = GetBlockHashListFromPeers(arCli, startHeight, endHeight, 5)
36+
}
3337
}
3438

3539
if err != nil {
@@ -78,7 +82,8 @@ func GetBlockHashList(arCli *goar.Client, startHeight, endHeight int64) ([]strin
7882
if curHeight < endHeight {
7983
return nil, fmt.Errorf("curHeight must >= endHeight; curHeight:%d,endHeight:%d", curHeight, endHeight)
8084
}
81-
spiltList := list[curHeight-endHeight : endHeight-startHeight+1]
85+
// todo bug fix
86+
spiltList := list[curHeight-endHeight : curHeight-startHeight+1]
8287
return spiltList, nil
8388
}
8489

@@ -135,3 +140,43 @@ func strArrCheckSum(ss []string) string {
135140
hash := sha256.Sum256([]byte(strings.Join(ss, "")))
136141
return string(hash[:])
137142
}
143+
144+
// TODO Lev suggest Temporary Solutions
145+
var gateway3Cli = gentleman.New().URL("http://gateway-3.arweave.net:1984")
146+
147+
func getBlockHashListByHeightRange(startHeight, endHeight int64) ([]string, error) {
148+
gateway3Cli.AddPath(fmt.Sprintf("/hash_list/%d/%d", startHeight, endHeight))
149+
150+
req := gateway3Cli.Request()
151+
resp, err := req.Send()
152+
if err != nil {
153+
return nil, err
154+
}
155+
156+
if !resp.Ok {
157+
return nil, errors.New("resp is not ok")
158+
}
159+
160+
defer resp.Close()
161+
list := make([]string, 0, endHeight-startHeight+1)
162+
if err = resp.JSON(&list); err != nil {
163+
return nil, err
164+
}
165+
166+
return list, nil
167+
}
168+
169+
func GetBlockHashListByGateway3(startHeight, endHeight int64) ([]string, error) {
170+
if startHeight > endHeight {
171+
return nil, fmt.Errorf("startHeight:%d must <= endHeight:%d", startHeight, endHeight)
172+
}
173+
list, err := getBlockHashListByHeightRange(startHeight, endHeight)
174+
if err != nil {
175+
return nil, err
176+
}
177+
// verify
178+
if len(list) != int(endHeight-startHeight+1) {
179+
return nil, errors.New("get list incorrect")
180+
}
181+
return list, nil
182+
}

blocks_test.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package arsyncer
2+
3+
import (
4+
"github.com/everFinance/goar"
5+
"github.com/stretchr/testify/assert"
6+
"testing"
7+
)
8+
9+
func TestGetBlockHashListByHeightRange(t *testing.T) {
10+
start := int64(878791)
11+
end := int64(878793)
12+
list, err := GetBlockHashListByGateway3(start, end)
13+
assert.NoError(t, err)
14+
t.Log(list)
15+
arCli := goar.NewClient("https://arweave.net")
16+
list, err = GetBlockHashList(arCli, start, end)
17+
t.Log(list)
18+
}

example/all-tx-syncer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
// sync all arweave tx
99
func main() {
1010
nullFilterParams := arsyncer.FilterParams{} // non-file params
11-
startHeight := int64(877360)
11+
startHeight := int64(879220)
1212
arNode := "https://arweave.net"
1313
concurrencyNumber := 10 // runtime concurrency number, default 10
1414
s := arsyncer.New(startHeight, nullFilterParams, arNode, concurrencyNumber, 15)

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ require (
1010
github.com/panjf2000/ants/v2 v2.4.6
1111
github.com/pkg/errors v0.9.1 // indirect
1212
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
13+
gopkg.in/h2non/gentleman.v2 v2.0.5 // indirect
1314
)

0 commit comments

Comments
 (0)