New build system for SJCL.

This commit is contained in:
Stefan Thomas
2012-12-20 12:38:29 -08:00
parent 1f74c1e30e
commit f0ee9e6cbf
2 changed files with 43 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
// Represent Ripple amounts and currencies.
// - Numbers in hex are big-endian.
var sjcl = require('./sjcl/core.js');
var bn = require('./sjcl/core.js').bn;
var sjcl = require('../../build/sjcl');
var bn = sjcl.bn;
var utils = require('./utils.js');
var jsbn = require('./jsbn.js');