Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bd21 committed Nov 28, 2023
1 parent 1a295ac commit d41e63f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/noble/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func StartListener(cfg config.Config, logger log.Logger, processingQueue chan *t
go func() {
for {
block := <-blockQueue
rawResponse, err := http.Get(fmt.Sprintf("https://rpc.testnet.noble.strange.love/tx_search?query=\"tx.height=%d\"", block))
rawResponse, err := http.Get(fmt.Sprintf("%s/tx_search?query=\"tx.height=%d\"", cfg.Networks.Source.Noble.RPC, block))
if err != nil {
logger.Debug(fmt.Sprintf("unable to query Noble block %d", block))
continue
Expand Down

0 comments on commit d41e63f

Please sign in to comment.