bitcoin-client

bitcoin client library for price ticker and wallet

git clone https://9o.is/git/bitcoin-client.git

Exchange.scala

(315B)


      1 package inc.pyc.bitcoin
      2 
      3 import service._
      4 import akka.actor._
      5 
      6 /**
      7  * Bitcoin Exchange service to buy and sell bitcoin
      8  */
      9 sealed trait Exchange
     10 
     11 /**
     12  * Bitcoin Exchange service to buy and sell bitcoin via HTTP
     13  */
     14 trait HttpExchange
     15   extends HttpService with HttpPriceTicker {
     16   this: Actor with ActorLogging =>
     17 }