storage: remove redundant encoding version column

This commit is contained in:
George Tankersley
2018-12-11 03:05:12 -05:00
parent f6def7cda8
commit f4d918b5f5
2 changed files with 4 additions and 6 deletions

View File

@@ -58,10 +58,9 @@ func TestSqliteStorage(t *testing.T) {
hash := hex.EncodeToString(block.GetEncodableHash())
hasSapling := block.HasSaplingTransactions()
protoBlock := block.ToCompact()
version := 1
marshaled, _ := protobuf.Marshal(protoBlock)
err = StoreBlock(conn, height, hash, hasSapling, version, marshaled)
err = StoreBlock(conn, height, hash, hasSapling, marshaled)
if err != nil {
t.Error(err)
continue