diff --git a/Godeps/_workspace/src/github.com/tendermint/tendermint/vm/types.go b/Godeps/_workspace/src/github.com/tendermint/tendermint/vm/types.go
index 2010c13b4c99e2b4d934ff4473c1431956a6d99d..9af090b1ff83e81ab90682ec3fb3296de97ed4d7 100644
--- a/Godeps/_workspace/src/github.com/tendermint/tendermint/vm/types.go
+++ b/Godeps/_workspace/src/github.com/tendermint/tendermint/vm/types.go
@@ -26,10 +26,10 @@ func (acc *Account) String() string {
 }
 
 type Log struct {
-	Address Word256
-	Topics  []Word256
-	Data    []byte
-	Height  int64
+	Address Word256   `json:"address"`
+	Topics  []Word256 `json:"topics"`
+	Data    []byte    `json:"data"`
+	Height  int64     `json:"height"`
 }
 
 type AppState interface {
diff --git a/erisdb/serve.go b/erisdb/serve.go
index 3a4520dbac9235bf2f842910409a5cf8e8783c60..a6b91d8c16c457c8b9ec9f9dc0972411b49e1c5c 100644
--- a/erisdb/serve.go
+++ b/erisdb/serve.go
@@ -99,4 +99,4 @@ func startNode(nd *node.Node, ready chan struct{}, shutDown <-chan struct{}) {
 	// Block until everything is shut down.
 	<-shutDown
 	nd.Stop()
-}
+}
\ No newline at end of file
diff --git a/test/testdata/filters/testdata_filters.go b/test/testdata/filters/testdata_filters.go
index 607b75ccbd8c9fb81b5643c00a8849a74d613b67..378649d4fa06b22a25cc1d38b40ddbe1522d1113 100644
--- a/test/testdata/filters/testdata_filters.go
+++ b/test/testdata/filters/testdata_filters.go
@@ -267,6 +267,7 @@ var testDataJson = `{
 var serverDuration uint = 100
 
 type (
+	
 	ChainData struct {
 		PrivValidator *state.PrivValidator `json:"priv_validator"`
 		Genesis       *state.GenesisDoc    `json:"genesis"`