Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit c0caabc

Browse files
committed
Merge branch 'filecoinIntegration' of https://github.com/OpenBazaar/openbazaar-go into filecoinIntegration
2 parents 84c9355 + 13eac88 commit c0caabc

File tree

6 files changed

+10
-15
lines changed

6 files changed

+10
-15
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: go
22
go:
3-
- "1.11"
3+
- "1.13"
44
sudo: required
55
services:
66
- docker

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage - Use a full build environment to create a static binary
2-
FROM golang:1.11
2+
FROM golang:1.13
33
COPY . /go/src/github.com/OpenBazaar/openbazaar-go
44
RUN go build --ldflags '-extldflags "-static"' -o /opt/openbazaard /go/src/github.com/OpenBazaar/openbazaar-go
55

Godeps/Godeps.json

Lines changed: 1 addition & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

repo/db/txns_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func TestTxnsGet(t *testing.T) {
100100
if err != nil {
101101
t.Error(err)
102102
}
103-
txn, err := txdb.Get(tx.TxHash())
103+
txn, err := txdb.Get(tx.TxHash().String())
104104
if err != nil {
105105
t.Error(err)
106106
}
@@ -208,11 +208,11 @@ func TestTxnsDB_UpdateHeight(t *testing.T) {
208208
if err != nil {
209209
t.Error(err)
210210
}
211-
err = txdb.UpdateHeight(tx.TxHash(), -1, time.Now())
211+
err = txdb.UpdateHeight(tx.TxHash().String(), -1, time.Now())
212212
if err != nil {
213213
t.Error(err)
214214
}
215-
txn, err := txdb.Get(tx.TxHash())
215+
txn, err := txdb.Get(tx.TxHash().String())
216216
if err != nil {
217217
t.Error(err)
218218
}

vendor/github.com/OpenBazaar/multiwallet/.travis.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/OpenBazaar/multiwallet/datastore/mock.go

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)