9 lines
221 B
Go
9 lines
221 B
Go
package testing
|
|
|
|
import "github.com/8thlight/vulcanizedb/pkg/repositories"
|
|
|
|
func ClearData(postgres repositories.Postgres) {
|
|
postgres.Db.MustExec("DELETE FROM transactions")
|
|
postgres.Db.MustExec("DELETE FROM blocks")
|
|
}
|