Change remainingFillableAmount to metaData

This commit is contained in:
fragosti
2018-08-08 11:57:16 -07:00
parent 853b5aa38b
commit c9e1b7c5dc
2 changed files with 6 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ export const relayerApiOrderSchema = {
type: 'object',
properties: {
order: { $ref: '/orderSchema' },
remainingFillableAmount: { $ref: '/numberSchema' },
metaData: { type: 'object' },
},
required: ['order', 'remainingFillableAmount'],
required: ['order', 'metaData'],
};