go fmt'ed

This commit is contained in:
Sascha L. Teichmann 2014-08-04 21:06:41 +02:00
parent 35d05ba9c8
commit 913ae0d2c7
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ func (ldb *LevelDBBackend) Store(hash, key, value []byte) (exists bool, err erro
if pos, err = bytes2pos(key); err != nil {
return
}
// Re-code it to make LevelDB happy.
key = pos2bytes(pos)
// Re-code it to make LevelDB happy.
key = pos2bytes(pos)
if exists, err = ldb.keyExists(key); err != nil {
return