Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
Additional Field
Browse files Browse the repository at this point in the history
`quotePrecision` will be removed in v4
  • Loading branch information
bmino committed May 11, 2020
1 parent a1954ed commit 246397f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ describe('Exchange Info', function () {
assert(async_data !== null, 'data should not be null');
assert(Object.prototype.hasOwnProperty.call(async_data, 'symbols'), 'data should have property \'symbols\'');

let symbolMembers = ['status', 'orderTypes', 'icebergAllowed', 'baseAsset', 'baseAssetPrecision', 'quoteAsset', 'quotePrecision'];
let symbolMembers = ['status', 'orderTypes', 'icebergAllowed', 'baseAsset', 'baseAssetPrecision', 'quoteAsset', 'quotePrecision', 'quoteAssetPrecision'];
async_data.symbols.forEach(function (symbol) {
symbolMembers.forEach(function (member) {
assert(Object.prototype.hasOwnProperty.call(symbol, member), WARN_SHOULD_HAVE_KEY + member);
Expand Down

0 comments on commit 246397f

Please sign in to comment.