exe/capwatch in capwatch-0.2.4 vs exe/capwatch in capwatch-0.2.5
- old
+ new
@@ -12,10 +12,16 @@
exit 130
}
if options.telegram
Telegram.new(options.telegram).start
+elsif options.all
+ loop do
+ system("clear")
+ puts List::watch
+ sleep options.tick
+ end
else
loop do
config = Fund::Config.new
provider = Providers::CoinMarketCap.new
fund = Fund.new(provider: provider, config: config)
@@ -23,7 +29,5 @@
puts fund.console_table
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
-
-