This commit is contained in:
Chris Lu
2019-03-30 23:09:16 -07:00
parent 97406333a5
commit 78ac2bef3c
7 changed files with 18 additions and 18 deletions

View File

@@ -46,13 +46,13 @@ func (store *LevelDBStore) initialize(dir string) (err error) {
return
}
func (store *LevelDBStore) BeginTransaction(ctx context.Context) (context.Context, error){
func (store *LevelDBStore) BeginTransaction(ctx context.Context) (context.Context, error) {
return ctx, nil
}
func (store *LevelDBStore) CommitTransaction(ctx context.Context) error{
func (store *LevelDBStore) CommitTransaction(ctx context.Context) error {
return nil
}
func (store *LevelDBStore) RollbackTransaction(ctx context.Context) error{
func (store *LevelDBStore) RollbackTransaction(ctx context.Context) error {
return nil
}