1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 01:39:44 +01:00

Show gas warning for legacy networks also (#18871)

This commit is contained in:
Jyoti Puri 2023-05-01 20:33:32 +05:30 committed by GitHub
parent 8193a4999c
commit 4bad30c94d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 56 additions and 17 deletions

View File

@ -167,9 +167,7 @@ export default class ConfirmPageContainerContent extends Component {
const { t } = this.context;
const showInsuffienctFundsError =
supportsEIP1559 &&
(errorKey || errorMessage) &&
errorKey === INSUFFICIENT_FUNDS_ERROR_KEY;
(errorKey || errorMessage) && errorKey === INSUFFICIENT_FUNDS_ERROR_KEY;
return (
<div
@ -206,7 +204,9 @@ export default class ConfirmPageContainerContent extends Component {
transactionType={transactionType}
/>
{this.renderContent()}
{!supportsEIP1559 && (errorKey || errorMessage) && (
{!supportsEIP1559 &&
!showInsuffienctFundsError &&
(errorKey || errorMessage) && (
<div className="confirm-page-container-content__error-container">
<ErrorMessage errorMessage={errorMessage} errorKey={errorKey} />
</div>

View File

@ -3,7 +3,10 @@ import React from 'react';
import configureMockStore from 'redux-mock-store';
import { TransactionType } from '../../../../../shared/constants/transaction';
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
import { TRANSACTION_ERROR_KEY } from '../../../../helpers/constants/error-keys';
import {
INSUFFICIENT_FUNDS_ERROR_KEY,
TRANSACTION_ERROR_KEY,
} from '../../../../helpers/constants/error-keys';
import { SECURITY_PROVIDER_MESSAGE_SEVERITIES } from '../../security-provider-banner-message/security-provider-banner-message.constants';
import ConfirmPageContainerContent from './confirm-page-container-content.component';
@ -170,4 +173,30 @@ describe('Confirm Page Container Content', () => {
).toBeNull();
expect(queryByText('This is based on information from')).toBeNull();
});
it('should show insufficient funds error for EIP-1559 network', () => {
const { getByRole } = renderWithProvider(
<ConfirmPageContainerContent
{...props}
errorKey={INSUFFICIENT_FUNDS_ERROR_KEY}
isBuyableChain
supportsEIP1559
/>,
store,
);
expect(getByRole('button', { name: 'Buy' })).toBeInTheDocument();
});
it('should show insufficient funds error for legacy network', () => {
const { getByRole } = renderWithProvider(
<ConfirmPageContainerContent
{...props}
errorKey={INSUFFICIENT_FUNDS_ERROR_KEY}
isBuyableChain
supportsEIP1559={false}
/>,
store,
);
expect(getByRole('button', { name: 'Buy' })).toBeInTheDocument();
});
});

View File

@ -501,16 +501,26 @@ exports[`Confirm Transaction Base should match snapshot 1`] = `
class="confirm-page-container-content__error-container"
>
<div
class="error-message"
class="actionable-message actionable-message--danger actionable-message--warning actionable-message--with-icon"
>
<span
class="box error-message__icon mm-icon mm-icon--size-sm box--margin-right-2 box--display-inline-block box--flex-direction-row box--color-error-default"
style="mask-image: url('./images/icons/warning.svg');"
<svg
viewBox="0 0 10 10"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M5 0C2.2 0 0 2.2 0 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 2c.4 0 .7.3.7.7s-.3.7-.7.7-.7-.2-.7-.6.3-.8.7-.8zm.7 6H4.3V4.3h1.5V8z"
fill="var(--color-error-default)"
/>
</svg>
<div
class="error-message__text"
class="actionable-message__message"
>
Insufficient funds.
<h6
class="box box--margin-top-1 box--margin-bottom-1 box--flex-direction-row typography typography--h7 typography--weight-normal typography--style-normal typography--align-left typography--color-text-default"
>
You do not have enough in your account to pay for transaction fees on Goerli network. Deposit from another account.
</h6>
</div>
</div>
</div>