1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

update constants

This commit is contained in:
Szymon Lesisz 2018-09-13 14:38:52 +02:00
parent e2f397d241
commit 9293a33b57
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,6 @@
/* @flow */
export const START: 'backend__start' = 'backend__start';
export const STOP: 'backend__stop' = 'backend__stop';
export const READY: 'backend__ready' = 'backend__ready';
export const CONNECTING: 'backend__connecting' = 'backend__connecting';
export const CONNECTED: 'backend__connected' = 'backend__connected';
export const DISCONNECTED: 'backend__disconnected' = 'backend__disconnected';

View File

@ -5,5 +5,5 @@ export const START: 'discovery__start' = 'discovery__start';
export const STOP: 'discovery__stop' = 'discovery__stop';
export const COMPLETE: 'discovery__complete' = 'discovery__complete';
export const WAITING_FOR_DEVICE: 'discovery__waiting_for_device' = 'discovery__waiting_for_device';
export const WAITING_FOR_BACKEND: 'discovery__waiting_for_backend' = 'discovery__waiting_for_backend';
export const WAITING_FOR_BLOCKCHAIN: 'discovery__waiting_for_blockchain' = 'discovery__waiting_for_blockchain';
export const FROM_STORAGE: 'discovery__from_storage' = 'discovery__from_storage';

View File

@ -8,3 +8,4 @@ export const READY: 'web3__ready' = 'web3__ready';
export const BLOCK_UPDATED: 'web3__block_updated' = 'web3__block_updated';
export const GAS_PRICE_UPDATED: 'web3__gas_price_updated' = 'web3__gas_price_updated';
export const PENDING_TX_RESOLVED: 'web3__pending_tx_resolved' = 'web3__pending_tx_resolved';
export const DISCONNECT: 'web3__disconnect' = 'web3__disconnect';