Skip to content

Commit

Permalink
use USD for Xdai symbol (fixes #74)
Browse files Browse the repository at this point in the history
  • Loading branch information
asoltys committed Apr 15, 2019
1 parent 35d82f5 commit fd4b807
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/AdvancedSettings/Blockchain.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ const Blockchain = () => {
value={newBlockchain}
type="select"
>
<option value="Ethereum">Ethereum</option>
<option value="Rinkeby">Rinkeby</option>
<option value="Xdai">Xdai</option>
<option value="Ethereum">Ethereum (ETH)</option>
<option value="Rinkeby">Rinkeby (tETH)</option>
<option value="Xdai">Xdai (USD)</option>
</Input>
)}
</FormGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/store/PaymentActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const bytesPerGb = BigNumber("1000000000");
const symbols = {
Ethereum: "ETH",
Rinkeby: "tETH",
Xdai: "DAI"
Xdai: "USD"
};

export async function getBlockchain({ setState, state }) {
Expand Down

0 comments on commit fd4b807

Please sign in to comment.