Merge pull request #563 from bitjson/feature/make-btc-default-unit

fix(units): switch default unit to BTC
This commit is contained in:
Matias Alejo Garcia 2016-10-19 00:33:51 -03:00 committed by GitHub
commit 6fc32d0585

View file

@ -23,10 +23,10 @@ angular.module('copayApp.services').factory('configService', function(storageSer
reconnectDelay: 5000, reconnectDelay: 5000,
idleDurationMin: 4, idleDurationMin: 4,
settings: { settings: {
unitName: 'bits', unitName: 'BTC',
unitToSatoshi: 100, unitToSatoshi: 100,
unitDecimals: 2, unitDecimals: 2,
unitCode: 'bit', unitCode: 'btc',
alternativeName: 'US Dollar', alternativeName: 'US Dollar',
alternativeIsoCode: 'USD', alternativeIsoCode: 'USD',
} }