Save Logs to DB (#100)

* Save logs to database

* Save multiple logs to db

* Add block number parameter to `FindLogs`
This commit is contained in:
Matt K
2017-12-12 15:55:26 -06:00
committed by GitHub
parent 5e64283a12
commit a68f277066
13 changed files with 366 additions and 19 deletions
+2 -1
View File
@@ -4,6 +4,7 @@ type Log struct {
BlockNumber int64
TxHash string
Address string
Topics []string
Topics map[int]string
Index int64
Data string
}