From 19850c18d598c8874f5345eb90ef83594aaf8f33 Mon Sep 17 00:00:00 2001 From: gagarin55 Date: Wed, 13 Apr 2016 21:50:13 -0700 Subject: [PATCH 1/3] typo fixed --- release-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes.md b/release-notes.md index 446738a20ed..29ad8bf089a 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,7 +1,7 @@ **1.2.4** * New API call /transactions/info -* MVStore is used for state persostance +* MVStore is used for state persistence **1.2.3** From 6fb3f922880188904e31b1b478c68c4a2f4a505b Mon Sep 17 00:00:00 2001 From: gagarin55 Date: Thu, 14 Apr 2016 05:47:50 -0700 Subject: [PATCH 2/3] comment added --- .../transaction/state/database/blockchain/StoredState.scala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scorex-transaction/src/main/scala/scorex/transaction/state/database/blockchain/StoredState.scala b/scorex-transaction/src/main/scala/scorex/transaction/state/database/blockchain/StoredState.scala index 179224647c3..fe9bd8d9784 100644 --- a/scorex-transaction/src/main/scala/scorex/transaction/state/database/blockchain/StoredState.scala +++ b/scorex-transaction/src/main/scala/scorex/transaction/state/database/blockchain/StoredState.scala @@ -39,6 +39,9 @@ class StoredState(fileNameOpt: Option[String]) extends LagonakiState with Scorex private val lastStates: MVMap[Address, Int] = db.openMap(LastStates) + /** + * Transaction Signature -> Block height Map + */ private val includedTx: MVMap[Array[Byte], Int] = db.openMap(IncludedTx) private val heightMap: MVMap[String, Int] = db.openMap(HeightKey) From ac31262dc3aba53aaa6f6884a3b420b764c85ee0 Mon Sep 17 00:00:00 2001 From: gagarin55 Date: Thu, 14 Apr 2016 05:54:38 -0700 Subject: [PATCH 3/3] readme refinement --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4e2502901ae..133da0b89f7 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,9 @@ and agree with license terms Install SBT(Scala Build Tool): `echo "deb http://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list` + `apt-get update` + `apt-get install sbt`