From 67db6ab4506a94aed944e476528c4b1976302dd9 Mon Sep 17 00:00:00 2001 From: Niklaus Giger Date: Wed, 8 Nov 2017 15:10:58 +0100 Subject: [PATCH] Add LTC and BCH to list of default currencies --- lib/rapflag/config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rapflag/config.rb b/lib/rapflag/config.rb index 681f9dd..4c6967a 100644 --- a/lib/rapflag/config.rb +++ b/lib/rapflag/config.rb @@ -26,7 +26,7 @@ module RAPFLAG Config= YAML.load_file(config_file) end - Config['currencies'] ||= ['BTC', 'BFX', 'XMR', 'ZEC', 'XRP', 'ETH'] + Config['currencies'] ||= ['BTC', 'BFX', 'XMR', 'ZEC', 'XRP', 'ETH', 'LTC' 'BCH'] Config['currencies'] << 'USD' unless Config['currencies'].index('USD') Config['currencies'].sort! end