Closed altcoin-services closed 5 years ago
Actually I wanted the markets drop down to show only market pairs not all coins which I added to exchange.
Add flag on markets.yml file and use that
@pankaj9310 thanks for your answer , what do you mean ? it's one of coins on my markets.yml :
bid: {fee: 0.1, currency: btc, fixed: 8} ask: {fee: 0.1, currency: eth, fixed: 8} sort_order: 1
un comment this line and set visible:false
@pankaj9310 it says "We're sorry, but something went wrong." after uncommenting #visible: false
managed to make it work by switching base with quote on markets.yml
hello, i wanted to change markets drop down to base market instead of quote market, i tried changing : app/controllers/private/markets_controller.rb line 15 from: @market_groups = @markets.map(&:quote_unit).uniq to: @market_groups = @markets.map(&:base_unit).uniq other markets than market pairs disappeared, but when i click on for example btc market it doesn't show anything, i also changed : &.eth { tr.quote-eth { display: block; } } to : &.eth { tr.base-eth { display: block; } } on: app/assets/stylesheets/market.dss.scss it didn't worked either, any help? thanks.