mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
commit
29cbfd1ea2
@ -2,12 +2,15 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
## 3.1.0 2017-1-18
|
||||||
|
|
||||||
- Add ability to import accounts by private key.
|
- Add ability to import accounts by private key.
|
||||||
- Fixed bug that returned the wrong transaction hashes on private networks that had not implemented EIP 155 replay protection (like TestRPC).
|
- Fixed bug that returned the wrong transaction hashes on private networks that had not implemented EIP 155 replay protection (like TestRPC).
|
||||||
|
|
||||||
## 3.0.1 2017-1-17
|
## 3.0.1 2017-1-17
|
||||||
|
|
||||||
- Fixed bug that prevented eth.sign from working.
|
- Fixed bug that prevented eth.sign from working.
|
||||||
|
- Fix the displaying of transactions that have been submitted to the network in Transaction History
|
||||||
|
|
||||||
## 3.0.0 2017-1-16
|
## 3.0.0 2017-1-16
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "MetaMask",
|
"name": "MetaMask",
|
||||||
"short_name": "Metamask",
|
"short_name": "Metamask",
|
||||||
"version": "3.0.1",
|
"version": "3.1.0",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"author": "https://metamask.io",
|
"author": "https://metamask.io",
|
||||||
"description": "Ethereum Browser Extension",
|
"description": "Ethereum Browser Extension",
|
||||||
|
@ -296,7 +296,7 @@ module.exports = class TransactionManager extends EventEmitter {
|
|||||||
// checks if a signed tx is in a block and
|
// checks if a signed tx is in a block and
|
||||||
// if included sets the tx status as 'confirmed'
|
// if included sets the tx status as 'confirmed'
|
||||||
checkForTxInBlock () {
|
checkForTxInBlock () {
|
||||||
var signedTxList = this.getFilteredTxList({status: 'signed'})
|
var signedTxList = this.getFilteredTxList({status: 'submitted'})
|
||||||
if (!signedTxList.length) return
|
if (!signedTxList.length) return
|
||||||
signedTxList.forEach((txMeta) => {
|
signedTxList.forEach((txMeta) => {
|
||||||
var txHash = txMeta.hash
|
var txHash = txMeta.hash
|
||||||
|
@ -41,7 +41,7 @@ TransactionIcon.prototype.render = function () {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
case 'signed':
|
case 'submitted':
|
||||||
return h('i.fa.fa-ellipsis-h', {
|
return h('i.fa.fa-ellipsis-h', {
|
||||||
style: {
|
style: {
|
||||||
fontSize: '27px',
|
fontSize: '27px',
|
||||||
|
Loading…
Reference in New Issue
Block a user