mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
fix send duck standard setting bug in updateSendAsset (#13289)
This commit is contained in:
parent
4cf5c942aa
commit
269aaa6fb5
@ -1434,11 +1434,15 @@ export function updateSendAsset({ type, details }) {
|
|||||||
state.send.account.address ?? getSelectedAddress(state),
|
state.send.account.address ?? getSelectedAddress(state),
|
||||||
);
|
);
|
||||||
// TODO remove along with migration of isERC721 tokens and stripping away this designation
|
// TODO remove along with migration of isERC721 tokens and stripping away this designation
|
||||||
if (details && details.isERC721 === undefined) {
|
if (details) {
|
||||||
const updatedAssetDetails = await updateTokenType(details.address);
|
if (details.isERC721 === undefined) {
|
||||||
details.isERC721 = updatedAssetDetails.isERC721;
|
const updatedAssetDetails = await updateTokenType(details.address);
|
||||||
|
details.isERC721 = updatedAssetDetails.isERC721;
|
||||||
|
}
|
||||||
|
if (details.standard === undefined) {
|
||||||
|
details.standard = ERC20;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
details.standard = ERC20;
|
|
||||||
await dispatch(hideLoadingIndication());
|
await dispatch(hideLoadingIndication());
|
||||||
} else if (type === ASSET_TYPES.COLLECTIBLE) {
|
} else if (type === ASSET_TYPES.COLLECTIBLE) {
|
||||||
let isCurrentOwner = true;
|
let isCurrentOwner = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user