Skip to content

Commit c40bc10

Browse files
authored
Merge branch 'dev-3.0.0' into internalise_functions_variables
2 parents fdf351d + df24e42 commit c40bc10

File tree

5 files changed

+349
-207
lines changed

5 files changed

+349
-207
lines changed

CLI/commands/common/constants.js

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,22 @@ module.exports = Object.freeze({
3232
STABLE: 2
3333
},
3434
DEFAULT_BATCH_SIZE: 75,
35-
ADDRESS_ZERO: '0x0000000000000000000000000000000000000000'
36-
});
35+
ADDRESS_ZERO: '0x0000000000000000000000000000000000000000',
36+
TRASFER_RESULT: {
37+
INVALID: '0',
38+
NA: '1',
39+
VALID: '2',
40+
FORCE_VALID: '3'
41+
},
42+
TRANSFER_STATUS_CODES: {
43+
TransferFailure: '0x50',
44+
TransferSuccess: '0x51',
45+
InsufficientBalance: '0x52',
46+
InsufficientAllowance: '0x53',
47+
TransfersHalted: '0x54',
48+
FundsLocked: '0x55',
49+
InvalidSender: '0x56',
50+
InvalidReceiver: '0x57',
51+
InvalidOperator: '0x58'
52+
}
53+
});

CLI/commands/dividends_manager.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ async function dividendsManager() {
161161
break;
162162
case 'Explore checkpoint':
163163
await exploreCheckpoint();
164+
break;
164165
case 'Show current default exclusions':
165166
showExcluded(defaultExcluded);
166167
break;

0 commit comments

Comments
 (0)