This commit is contained in:
Sascha L. Teichmann 2017-09-05 18:22:49 +02:00
commit 10be491898
2 changed files with 1 additions and 2 deletions

View File

@ -189,7 +189,6 @@ func (ldbs *LevelDBSession) Store(hash, key, value []byte) (exists bool, err err
}
if ldbs.tx != nil {
ldbs.tx.Put(key, value)
return
} else {
wo := leveldb.NewWriteOptions()
err = ldbs.backend.db.Put(wo, key, value)

View File

@ -9,7 +9,7 @@ import (
"os"
)
const MTSatelliteVersion = "0.9"
const MTSatelliteVersion = "0.9.1"
func PrintVersionAndExit() {
fmt.Printf("Version: %s\n", MTSatelliteVersion)