Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
axelsheva committed Nov 1, 2019
1 parent 555f74a commit e4e23aa
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions dist/model/transport/code.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export declare const enum API_ACTION_TYPES {
GET_TRANSACTIONS_BY_BLOCK_ID = "GET_TRANSACTIONS_BY_BLOCK_ID",
GET_BLOCK = "GET_BLOCK",
GET_BLOCKS = "GET_BLOCKS",
GET_LAST_BLOCK = "GET_LAST_BLOCK",
GET_DELEGATES = "GET_DELEGATES",
GET_ACTIVE_DELEGATES = "GET_ACTIVE_DELEGATES",
GET_MY_DELEGATES = "GET_MY_DELEGATES",
Expand Down
3 changes: 1 addition & 2 deletions dist/model/transport/event.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ export declare const enum EVENT_TYPES {
TRANSACTION_CONFLICTED = "TRANSACTION_CONFLICTED",
UPDATE_BLOCKCHAIN_INFO = "UPDATE_BLOCKCHAIN_INFO",
UPDATE_SYSTEM_INFO = "UPDATE_SYSTEM_INFO",
NEW_ROUND = "NEW_ROUND",
GET_LAST_BLOCK = "GET_LAST_BLOCK"
NEW_ROUND = "NEW_ROUND"
}
1 change: 1 addition & 0 deletions src/model/transport/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const enum API_ACTION_TYPES {

GET_BLOCK = 'GET_BLOCK',
GET_BLOCKS = 'GET_BLOCKS',
GET_LAST_BLOCK = 'GET_LAST_BLOCK',

GET_DELEGATES = 'GET_DELEGATES',
GET_ACTIVE_DELEGATES = 'GET_ACTIVE_DELEGATES',
Expand Down
1 change: 0 additions & 1 deletion src/model/transport/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ export const enum EVENT_TYPES {
UPDATE_BLOCKCHAIN_INFO = 'UPDATE_BLOCKCHAIN_INFO',
UPDATE_SYSTEM_INFO = 'UPDATE_SYSTEM_INFO',
NEW_ROUND = 'NEW_ROUND',
GET_LAST_BLOCK = 'GET_LAST_BLOCK',
}

0 comments on commit e4e23aa

Please sign in to comment.