Add tecOVERSIZE transaction result

This commit is contained in:
wltsmrz
2015-09-08 00:24:11 -07:00
parent e73bcd8fc1
commit 91dd6877aa
2 changed files with 5 additions and 3 deletions

View File

@@ -77,7 +77,8 @@ function loadSchemas() {
require('./schemas/trustlines-options.json'), require('./schemas/trustlines-options.json'),
require('./schemas/tx.json'), require('./schemas/tx.json'),
require('./schemas/uint32.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 titles = _.map(schemas, schema => schema.title);
const duplicates = _.keys(_.pick(_.countBy(titles), count => count > 1)); const duplicates = _.keys(_.pick(_.countBy(titles), count => count > 1));

View File

@@ -443,7 +443,7 @@ exports.ter = {
tecNO_LINE_REDUNDANT : 127, tecNO_LINE_REDUNDANT : 127,
tecPATH_DRY : 128, tecPATH_DRY : 128,
tecUNFUNDED : 129, // Deprecated, old ambiguous unfunded. tecUNFUNDED : 129, // Deprecated, old ambiguous unfunded.
tecMASTER_DISABLED : 130, tecNO_ALTERNATIVE_KEY : 130,
tecNO_REGULAR_KEY : 131, tecNO_REGULAR_KEY : 131,
tecOWNERS : 132, tecOWNERS : 132,
tecNO_ISSUER : 133, tecNO_ISSUER : 133,
@@ -457,5 +457,6 @@ exports.ter = {
tecINSUFFICIENT_RESERVE : 141, tecINSUFFICIENT_RESERVE : 141,
tecNEED_MASTER_KEY : 142, tecNEED_MASTER_KEY : 142,
tecDST_TAG_NEEDED : 143, tecDST_TAG_NEEDED : 143,
tecINTERNAL : 144 tecINTERNAL : 144,
tecOVERSIZE : 145
}; };