Skip to content

Commit

Permalink
Merge branch 'dev-3.0.0' into ctm-canTransfer-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdossa authored Jul 5, 2019
2 parents 9986f98 + df24e42 commit fdd421d
Show file tree
Hide file tree
Showing 5 changed files with 349 additions and 207 deletions.
21 changes: 19 additions & 2 deletions CLI/commands/common/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,22 @@ module.exports = Object.freeze({
STABLE: 2
},
DEFAULT_BATCH_SIZE: 75,
ADDRESS_ZERO: '0x0000000000000000000000000000000000000000'
});
ADDRESS_ZERO: '0x0000000000000000000000000000000000000000',
TRASFER_RESULT: {
INVALID: '0',
NA: '1',
VALID: '2',
FORCE_VALID: '3'
},
TRANSFER_STATUS_CODES: {
TransferFailure: '0x50',
TransferSuccess: '0x51',
InsufficientBalance: '0x52',
InsufficientAllowance: '0x53',
TransfersHalted: '0x54',
FundsLocked: '0x55',
InvalidSender: '0x56',
InvalidReceiver: '0x57',
InvalidOperator: '0x58'
}
});
1 change: 1 addition & 0 deletions CLI/commands/dividends_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ async function dividendsManager() {
break;
case 'Explore checkpoint':
await exploreCheckpoint();
break;
case 'Show current default exclusions':
showExcluded(defaultExcluded);
break;
Expand Down
Loading

0 comments on commit fdd421d

Please sign in to comment.