File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
frontends/web/src/routes/account Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 6
6
- Fix a bug that would prevent the app to perform firmware upgrade when offline.
7
7
- Replace sidebar with bottom navigation bar for mobile devices
8
8
- Introduce full screen selector for mobile in place of dropdown
9
+ - Fix wrong estimated confirmation time for ERC20 tokens.
9
10
10
11
# v4.47.2
11
12
- Linux: fix compatiblity with some versions of Mesa that are incompatible with the bundled wayland libraries
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ export const getCoinCode = (coinCode: CoinCode): CoinCode | undefined => {
64
64
case 'sepeth' :
65
65
return 'eth' ;
66
66
}
67
+ if ( coinCode . startsWith ( 'eth-erc20-' ) ) {
68
+ return 'eth' ;
69
+ }
67
70
} ;
68
71
69
72
export const getScriptName = ( scriptType : ScriptType ) : string => {
You can’t perform that action at this time.
0 commit comments