infertux/ubea

View on GitHub
lib/ubea/exchanges/anx_btc_chf.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "ubea/exchanges/anx_btc_base"

module Ubea
  module Exchange
    class AnxBtcChf < AnxBtcBase
      def fiat_currency
        "CHF"
      end
    end
  end
end