exe/capwatch in capwatch-0.2.3 vs exe/capwatch in capwatch-0.2.4
- old
+ new
@@ -14,15 +14,15 @@
if options.telegram
Telegram.new(options.telegram).start
else
loop do
- config = FundConfig.new
+ config = Fund::Config.new
provider = Providers::CoinMarketCap.new
fund = Fund.new(provider: provider, config: config)
system("clear")
puts fund.console_table
- puts "\nHey there! This is a Demo Fund. Please set up your fund by editing the \"#{FundConfig::DEMO_CONFIG_FILE}\" in your home directory".green if config.demo?
+ puts "\nHey there! This is a Demo Fund. Please set up your fund by editing the \"#{Fund::Config::Local::FILE_NAME}\" in your home directory".green if config.demo?
sleep options.tick
end
end