Skip to content

Instantly share code, notes, and snippets.

@Jud
Created May 20, 2014 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jud/32ac56d40f5fdedf0601 to your computer and use it in GitHub Desktop.
Save Jud/32ac56d40f5fdedf0601 to your computer and use it in GitHub Desktop.
peerman = new PeerManager
network: 'testnet'
peerman.addPeer(new Peer("0.0.0.0", "18333"))
peerman.on "connection", (conn) ->
conn.on "block", (info) ->
console.log "block"
conn.on "tx", (info) ->
console.log "tx"
peerman.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment