Merge branch 'master' into next

This commit is contained in:
Jeffrey Paul 2018-11-01 08:11:41 -07:00
commit ff9b67f543
Podpisane przez: sneak
ID klucza GPG: 052443F4DF2A55C2
3 zmienionych plików z 32 dodań i 1 usunięć

1
.gitignore vendored Normal file
Wyświetl plik

@ -0,0 +1 @@
steem-block-db

30
.gitlab-ci.yml Normal file
Wyświetl plik

@ -0,0 +1,30 @@
image: golang:1.11
cache:
paths:
- /apt-cache
- /go/src/github.com
- /go/src/golang.org
- /go/src/google.golang.org
- /go/src/gopkg.in
stages:
- test
- build
before_script:
- mkdir /go/src/steem-block-db
- cp $CI_PROJECT_DIR/*.go /go/src/steem-block-db
- cd /go/src/steem-block-db
- GOPATH=/go go get
#unit_tests:
# stage: test
# script:
# - make test
build:
stage: build
script:
- cd /go/src/steem-block-db
- GOPATH=/go go build

Wyświetl plik

@ -115,7 +115,7 @@ func (kv *BadgerKVStore) Put(key *string, value *string) error {
if err != nil {
log.Fatal(err)
}
err = txn.Commit(nil)
err = txn.Commit()
if err != nil {
log.Fatal(err)
}