This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from irisnet/develop
R4R: merge to master
- Loading branch information
Showing
66 changed files
with
553 additions
and
3,963 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM golang:1.13.1-alpine3.10 as builder | ||
|
||
# Set up dependencies | ||
ENV PACKAGES go make git libc-dev bash | ||
|
||
# Set up path | ||
ENV REPO_PATH $GOPATH/src | ||
ENV GO111MODULE on | ||
|
||
# RUN mkdir -p $REPO_PATH | ||
|
||
COPY . $REPO_PATH | ||
WORKDIR $REPO_PATH | ||
|
||
# Install minimum necessary dependencies, build binary | ||
RUN apk add --no-cache $PACKAGES && \ | ||
cd $REPO_PATH && make all | ||
|
||
FROM alpine:3.10 | ||
|
||
ENV BINARY_NAME rainbow-sync-iris | ||
COPY --from=builder /go/src/$BINARY_NAME /usr/local/bin/$BINARY_NAME | ||
|
||
CMD $BINARY_NAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
service/iris/block/parse_asset_detail.go → block/parse_asset_detail.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module github.com/irisnet/rainbow-sync | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/irisnet/irishub v0.16.0 | ||
github.com/jolestar/go-commons-pool v2.0.0+incompatible | ||
github.com/tendermint/tendermint v0.32.8 | ||
go.uber.org/zap v1.13.0 | ||
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 | ||
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 // indirect | ||
) | ||
|
||
replace ( | ||
github.com/tendermint/iavl => github.com/irisnet/iavl v0.12.3 | ||
github.com/tendermint/tendermint => github.com/irisnet/tendermint v0.32.1 | ||
golang.org/x/crypto => github.com/tendermint/crypto v0.0.0-20180820045704-3764759f34a5 | ||
) |
Oops, something went wrong.