You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

10 lines
315 B

var fs = require('fs');
// Defined as global for Browser testing support
dataValid = JSON.parse(fs.readFileSync('test/data/base58_keys_valid.json'));
dataInvalid = JSON.parse(fs.readFileSync('test/data/base58_keys_invalid.json'));
module.exports.dataValid = dataValid;
module.exports.dataInvalid = dataInvalid;