Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
change default to ropsten
Browse files Browse the repository at this point in the history
  • Loading branch information
kumavis committed Mar 27, 2017
1 parent b229167 commit e8c696d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const pageCode = require('fs').readFileSync('./index.html', 'utf-8')
const PORT = process.env.PORT || 9000
const PRIVATE_KEY = process.env.PRIVATE_KEY || '0x693148ab1226b1c6536bcf240079bcb36a12cd1c8e4f42468903c734d22718be'
if (!PRIVATE_KEY) throw new Error('Env var PRIVATE_KEY not specified.')
const RPC_NODE = process.env.RPC_NODE || 'https://morden.infura.io/'
const RPC_NODE = process.env.RPC_NODE || 'https://ropsten.infura.io/'
if (!RPC_NODE) throw new Error('Env var RPC_NODE not specified.')

// calculate faucet address
Expand Down

0 comments on commit e8c696d

Please sign in to comment.