Wallet/src/js/services/sjcl.js

7 lines
168 B
JavaScript
Raw Normal View History

2015-03-06 12:00:10 -03:00
'use strict';
angular.module('copayApp.services')
.factory('sjcl', function bitcoreFactory(bwcService) {
var sjcl = bwcService.getSJCL();
return sjcl;
});