diff --git a/go-client/config.toml b/go-client/config.toml index 2c58033..a479d3d 100644 --- a/go-client/config.toml +++ b/go-client/config.toml @@ -13,7 +13,7 @@ incentive_manager_address = "0x78Aeff0658Fa67735fBF99Ce7CDB01Fe5D520259" submission_window = 10 advance_blocks = 0 max_weight = 512 -value_provider_base_url = "http://localhost:3101/feed-values/" +value_provider_base_url = "http://localhost:3101" [transactions] accounts = [ diff --git a/go-client/provider/http_feed_provider.go b/go-client/provider/http_feed_provider.go index a6246ef..bc9b131 100644 --- a/go-client/provider/http_feed_provider.go +++ b/go-client/provider/http_feed_provider.go @@ -93,7 +93,7 @@ func (c *HttpValuesProvider) GetFeedValues(feeds []FeedId) ([]FeedValue, error) } // TODO: Should we specify voting round id instead of 0? - body, err := c.post("feed-values/0", req) + body, err := c.post("/feed-values/0", req) if err != nil { return nil, err }