This commit is contained in:
		@@ -5,7 +5,7 @@ import (
 | 
				
			|||||||
	"net/http"
 | 
						"net/http"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const fiatConvertURL = "https://pro-api.coingecko.com/api/v3/coins/bitcoin?localization=false&tickers=false&market_data=true&community_data=false&developer_data=false&sparkline=false"
 | 
					const fiatConvertURL = "https://api.coingecko.com/api/v3/coins/bitcoin?localization=false&tickers=false&market_data=true&community_data=false&developer_data=false&sparkline=false"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type coinGeckoResponse struct {
 | 
					type coinGeckoResponse struct {
 | 
				
			||||||
	MarketData struct {
 | 
						MarketData struct {
 | 
				
			||||||
@@ -18,7 +18,7 @@ type coinGeckoResponse struct {
 | 
				
			|||||||
func (c *client) convertBTCToCAD(amount int) (int, error) {
 | 
					func (c *client) convertBTCToCAD(amount int) (int, error) {
 | 
				
			||||||
	coinGeckoData := &coinGeckoResponse{}
 | 
						coinGeckoData := &coinGeckoResponse{}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	req, err := http.NewRequest("GET", fmt.Sprintf("%s&x_cg_pro_api_key=%s", fiatConvertURL, c.coinGeckoApiKey), nil)
 | 
						req, err := http.NewRequest("GET", fmt.Sprintf("%s&x-cg-demo-api-key=%s", fiatConvertURL, c.coinGeckoApiKey), nil)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return 0, fmt.Errorf("failed to create new GET request: %v", err)
 | 
							return 0, fmt.Errorf("failed to create new GET request: %v", err)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user