7
7
"github.com/everFinance/goar"
8
8
"github.com/everFinance/goar/types"
9
9
"github.com/everFinance/goar/utils"
10
+ "gopkg.in/h2non/gentleman.v2"
10
11
"strings"
11
12
)
12
13
@@ -23,13 +24,16 @@ func GetBlockIdxs(startHeight int64, arCli *goar.Client) (*BlockIdxs, error) {
23
24
return nil , err
24
25
}
25
26
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 )
29
29
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
+ }
33
37
}
34
38
35
39
if err != nil {
@@ -78,7 +82,8 @@ func GetBlockHashList(arCli *goar.Client, startHeight, endHeight int64) ([]strin
78
82
if curHeight < endHeight {
79
83
return nil , fmt .Errorf ("curHeight must >= endHeight; curHeight:%d,endHeight:%d" , curHeight , endHeight )
80
84
}
81
- spiltList := list [curHeight - endHeight : endHeight - startHeight + 1 ]
85
+ // todo bug fix
86
+ spiltList := list [curHeight - endHeight : curHeight - startHeight + 1 ]
82
87
return spiltList , nil
83
88
}
84
89
@@ -135,3 +140,43 @@ func strArrCheckSum(ss []string) string {
135
140
hash := sha256 .Sum256 ([]byte (strings .Join (ss , "" )))
136
141
return string (hash [:])
137
142
}
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
+ }
0 commit comments