Skip to content

Commit

Permalink
Added warnings for poloniex
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Sep 14, 2017
1 parent 7a778f3 commit 7c5a00e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion app/components/Send.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const exchangeOptions = [
},
{
key: 'poloniex',
text: 'Poloniex (@poloniex)',
text: '(!) Poloniex (@poloniex)',
value: 'poloniex'
},
{
Expand All @@ -48,6 +48,15 @@ const exchangeLinks = {
shapeshiftio: 'https://shapeshift.io'
};

const exchangeNotes = {
poloniex: (
<Message>
<strong>Warning</strong>:
Poloniex deposits have not been working for months, it's recommended to avoid this exchange. Please ensure verify whether or not their Steem wallet is active on their website.
</Message>
)
}

const exchangeSupportingEncryption = ['bittrex'];

const defaultState = {
Expand Down Expand Up @@ -289,6 +298,7 @@ export default class Send extends Component {
if (this.state.to) {
externalLink = (
<p style={{ marginLeft: '1em' }}>
{exchangeNotes[this.state.to]}
<a
onClick={this.handleExternalLink}
value={this.state.to}
Expand Down

0 comments on commit 7c5a00e

Please sign in to comment.