Skip to content

Commit

Permalink
Merge pull request #201 from mankenavenkatesh/master
Browse files Browse the repository at this point in the history
fix bor chain id in span  msg
  • Loading branch information
jdkanani authored Feb 19, 2020
2 parents e302f22 + cf1e997 commit da6b6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge/pier/span.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ func (s *SpanService) fetchNextSpanDetails(id uint64, start uint64) (*types.Span
q := req.URL.Query()
q.Add("span_id", strconv.FormatUint(id, 10))
q.Add("start_block", strconv.FormatUint(start, 10))
q.Add("chain_id", viper.GetString("bor-chain-id"))
q.Add("chain_id", helper.GetConfig().BorChainID)
q.Add("proposer", helper.GetFromAddress(s.cliCtx).String())
req.URL.RawQuery = q.Encode()

Expand Down

0 comments on commit da6b6c4

Please sign in to comment.