Skip to content

Instantly share code, notes, and snippets.

@sebicas
Created August 1, 2014 19:46
Show Gist options
  • Save sebicas/b4d6b5c54e515ab2a5c3 to your computer and use it in GitHub Desktop.
Save sebicas/b4d6b5c54e515ab2a5c3 to your computer and use it in GitHub Desktop.
var Remote = require('./stellar-lib').Remote;
var remote = new Remote({
host:'https://live.stellar.org',
port:9002,
secure:true,
fee_cushion: 1.5,
servers: [
{
host: 's1.stellar.com',
port: 443,
secure: true
}
]
});
remote.connect(function(){
console.log(arguments);
//errors with "No servers found"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment