Skip to content

Commit

Permalink
Add tecOVERSIZE transaction result
Browse files Browse the repository at this point in the history
  • Loading branch information
wltsmrz committed Sep 13, 2015
1 parent e73bcd8 commit 91dd687
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/api/common/schema-validator.js
Expand Up @@ -77,7 +77,8 @@ function loadSchemas() {
require('./schemas/trustlines-options.json'),
require('./schemas/tx.json'),
require('./schemas/uint32.json'),
require('./schemas/value.json')
require('./schemas/value.json'),
require('./schemas/prepare.json')
];
const titles = _.map(schemas, schema => schema.title);
const duplicates = _.keys(_.pick(_.countBy(titles), count => count > 1));
Expand Down
5 changes: 3 additions & 2 deletions src/core/binformat.js
Expand Up @@ -443,7 +443,7 @@ exports.ter = {
tecNO_LINE_REDUNDANT : 127,
tecPATH_DRY : 128,
tecUNFUNDED : 129, // Deprecated, old ambiguous unfunded.
tecMASTER_DISABLED : 130,
tecNO_ALTERNATIVE_KEY : 130,
tecNO_REGULAR_KEY : 131,
tecOWNERS : 132,
tecNO_ISSUER : 133,
Expand All @@ -457,5 +457,6 @@ exports.ter = {
tecINSUFFICIENT_RESERVE : 141,
tecNEED_MASTER_KEY : 142,
tecDST_TAG_NEEDED : 143,
tecINTERNAL : 144
tecINTERNAL : 144,
tecOVERSIZE : 145
};

0 comments on commit 91dd687

Please sign in to comment.