mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge branch 'master' into i1986-AddVersionToStateLogs
This commit is contained in:
commit
4b058bc7eb
@ -5,6 +5,7 @@
|
|||||||
- Make eth_sign deprecation warning less noisy
|
- Make eth_sign deprecation warning less noisy
|
||||||
- Fix bug with network version serialization over synchronous RPC
|
- Fix bug with network version serialization over synchronous RPC
|
||||||
- Add MetaMask version to state logs.
|
- Add MetaMask version to state logs.
|
||||||
|
- Add the total amount of tokens when multiple tokens are added under the token list
|
||||||
|
|
||||||
## 3.9.11 2017-8-24
|
## 3.9.11 2017-8-24
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ TokenList.prototype.renderTokenStatusBar = function () {
|
|||||||
let msg
|
let msg
|
||||||
if (tokens.length === 1) {
|
if (tokens.length === 1) {
|
||||||
msg = `You own 1 token`
|
msg = `You own 1 token`
|
||||||
} else if (tokens.length === 1) {
|
} else if (tokens.length > 1) {
|
||||||
msg = `You own ${tokens.length} tokens`
|
msg = `You own ${tokens.length} tokens`
|
||||||
} else {
|
} else {
|
||||||
msg = `No tokens found`
|
msg = `No tokens found`
|
||||||
|
Loading…
Reference in New Issue
Block a user