1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-27 10:48:22 +00:00

delete console.log

This commit is contained in:
slowbackspace 2019-04-29 12:57:25 +02:00
parent 0c4d9d7311
commit 8d1c01bc61
4 changed files with 1 additions and 8 deletions

View File

@ -427,8 +427,7 @@ export const onFeeLevelChange = (feeLevel: FeeLevel): ThunkAction => (
}
newGasPrice = feeLevel.gasPrice;
}
console.log('selected');
console.log(feeLevel);
dispatch({
type: SEND.CHANGE,
networkType: 'ethereum',

View File

@ -492,10 +492,6 @@ export const getFeeLevels = (
label: '',
};
console.log(l10nCommonMessages.TR_LOW_FEE);
console.log(l10nCommonMessages.TR_NORMAL_FEE);
console.log(l10nCommonMessages.TR_HIGH_FEE);
console.log(l10nCommonMessages.TR_CUSTOM_FEE);
return [
{
value: 'High',

View File

@ -110,7 +110,6 @@ export const init = (): AsyncAction => async (
const blockchainFeeLevels = dispatch(BlockchainActions.getFeeLevels(network));
const feeLevels = dispatch(ValidationActions.getFeeLevels(blockchainFeeLevels));
console.log(feeLevels);
const selectedFeeLevel = ValidationActions.getSelectedFeeLevel(
feeLevels,
initialState.selectedFeeLevel

View File

@ -480,7 +480,6 @@ const AccountSend = (props: Props) => {
options={feeLevels}
formatOptionLabel={option => (
<FeeOptionWrapper>
{console.log(option)}
<OptionValue>
<FormattedMessage {...option.localizedValue} />
</OptionValue>