Revert "Expose validation methods in public api"

This reverts commit 9e9a0a7d9b.

We should move methods like deriveKeypair and deriveAddress
off of the schemaValidator object.
This commit is contained in:
Elliot Lee
2018-08-10 14:54:01 -07:00
parent 9e9a0a7d9b
commit f5e1a4a588
5 changed files with 8 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ const setupAPI = require('./setup-api');
const responses = require('./fixtures').responses;
const ledgerClosed = require('./fixtures/rippled/ledger-close');
const RippleAPI = require('ripple-api').RippleAPI;
const schemaValidator = RippleAPI.schemaValidator;
const schemaValidator = RippleAPI._PRIVATE.schemaValidator;
const TIMEOUT = process.browser ? 25000 : 10000;