Skip to content

Commit

Permalink
Merge pull request #76 from gagarin55/devel
Browse files Browse the repository at this point in the history
minor fixes
  • Loading branch information
catena2w committed Apr 14, 2016
2 parents eb1b581 + ac31262 commit 011c7f6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`


Expand Down
5 changes: 3 additions & 2 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
**1.2.4**

* New API call /transactions/info
* MVStore is used for state persostance
* Fixed JSON style in API callsq

* MVStore is used for state persistence
* Fixed JSON style in API calls
* PeersHttpService was rebaned to PeersApiRoute

**1.2.3**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 011c7f6

Please sign in to comment.