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

Merge branch 'master' into dev

This commit is contained in:
Dan Finlay 2017-01-16 10:55:32 -08:00 committed by GitHub
commit 5dd5619e5d
6 changed files with 10 additions and 9 deletions

View File

@ -16,6 +16,8 @@
## 2.14.1 2016-12-20 ## 2.14.1 2016-12-20
- Update Coinbase info. and increase the buy amount to $15
- Fixed ropsten transaction links
- Temporarily disable extension reload detection causing infinite reload bug. - Temporarily disable extension reload detection causing infinite reload bug.
- Implemented basic checking for valid RPC URIs. - Implemented basic checking for valid RPC URIs.

View File

@ -4,7 +4,7 @@ var linkGen = require('../../ui/lib/explorer-link')
describe('explorer-link', function() { describe('explorer-link', function() {
it('adds testnet prefix to morden test network', function() { it('adds testnet prefix to morden test network', function() {
var result = linkGen('hash', '2') var result = linkGen('hash', '3')
assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected') assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected')
}) })

View File

@ -72,7 +72,7 @@ CoinbaseForm.prototype.render = function () {
lineHeight: '13px', lineHeight: '13px',
}, },
}, },
`there is a USD$ 5 a day max and a USD$ 50 `there is a USD$ 15 a day max and a USD$ 50
dollar limit per the life time of an account without a dollar limit per the life time of an account without a
coinbase account. A fee of 3.75% will be aplied to debit/credit cards.`), coinbase account. A fee of 3.75% will be aplied to debit/credit cards.`),
@ -136,14 +136,14 @@ CoinbaseForm.prototype.renderLoading = function () {
function isValidAmountforCoinBase (amount) { function isValidAmountforCoinBase (amount) {
amount = parseFloat(amount) amount = parseFloat(amount)
if (amount) { if (amount) {
if (amount <= 5 && amount > 0) { if (amount <= 15 && amount > 0) {
return { return {
valid: true, valid: true,
} }
} else if (amount > 5) { } else if (amount > 15) {
return { return {
valid: false, valid: false,
message: 'The amount can not be greater then $5', message: 'The amount can not be greater then $15',
} }
} else { } else {
return { return {

View File

@ -28,7 +28,7 @@ TransactionListItem.prototype.render = function () {
let isLinkable = false let isLinkable = false
const numericNet = parseInt(network) const numericNet = parseInt(network)
isLinkable = numericNet === 1 || numericNet === 2 isLinkable = numericNet === 1 || numericNet === 3
var isMsg = ('msgParams' in transaction) var isMsg = ('msgParams' in transaction)
var isTx = ('txParams' in transaction) var isTx = ('txParams' in transaction)
@ -42,7 +42,6 @@ TransactionListItem.prototype.render = function () {
} }
const isClickable = ('hash' in transaction && isLinkable) || isPending const isClickable = ('hash' in transaction && isLinkable) || isPending
return ( return (
h(`.transaction-list-item.flex-row.flex-space-between${isClickable ? '.pointer' : ''}`, { h(`.transaction-list-item.flex-row.flex-space-between${isClickable ? '.pointer' : ''}`, {
onClick: (event) => { onClick: (event) => {

View File

@ -446,7 +446,7 @@ function reduceApp (state, action) {
}, },
buyView: { buyView: {
subview: 'buyForm', subview: 'buyForm',
amount: '5.00', amount: '15.00',
buyAddress: action.value, buyAddress: action.value,
formView: { formView: {
coinbase: true, coinbase: true,

View File

@ -5,7 +5,7 @@ module.exports = function (hash, network) {
case 1: // main net case 1: // main net
prefix = '' prefix = ''
break break
case 2: // morden test net case 3: // morden test net
prefix = 'testnet.' prefix = 'testnet.'
break break
default: default: