From 325dcc003bbb3ee012b5ddbbf9b5a49198aadf28 Mon Sep 17 00:00:00 2001 From: fluency03 Date: Wed, 2 May 2018 10:01:06 +0200 Subject: [PATCH] add statement in readme --- README.md | 2 ++ .../com/fluency03/blockchain/api/actors/BlockchainActor.scala | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d444a6..d378c97 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ Inspired by: - [Daniel van Flymen](http://www.dvf.nyc/)'s blog [Learn Blockchains by Building One](https://hackernoon.com/learn-blockchains-by-building-one-117428612f46) - [Naivecoin](https://github.com/lhartikk/naivecoin) of [@lhartikk](https://github.com/lhartikk) +This project is meant to learn and understand Bitcoin and Blockchain. I personally also in the process of learning. So, what's a better the approach of learning it by building one ! Because of this is a continuous learning process, there might be something I do not understand earlier. Now when I understand it, the code will also be changed according. I am happy to discuss with you, which will make this learning process quicker and efficient. + REST API service is built on the open source projects [akka](https://github.com/akka/akka) and [akka-http](https://github.com/akka/akka-http). API Documentation on Postman: [blockchain-in-scala](https://documenter.getpostman.com/view/1231202/blockchain-in-scala/RVu8iTUP) diff --git a/src/main/scala/com/fluency03/blockchain/api/actors/BlockchainActor.scala b/src/main/scala/com/fluency03/blockchain/api/actors/BlockchainActor.scala index 10c8478..cd3cf6f 100644 --- a/src/main/scala/com/fluency03/blockchain/api/actors/BlockchainActor.scala +++ b/src/main/scala/com/fluency03/blockchain/api/actors/BlockchainActor.scala @@ -1,7 +1,6 @@ package com.fluency03.blockchain.api.actors import akka.actor.{ActorSelection, Props} -import akka.http.scaladsl.server.Directives.onSuccess import akka.pattern.ask import com.fluency03.blockchain.api.actors.BlockchainActor._ import com.fluency03.blockchain.api._