mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
Update dockerfile and tx list deps
This commit is contained in:
parent
428072d760
commit
7161efd70b
3 changed files with 9 additions and 9 deletions
|
|
@ -3,13 +3,13 @@ FROM alpine:3.3
|
||||||
RUN \
|
RUN \
|
||||||
apk add --update go git make gcc musl-dev && \
|
apk add --update go git make gcc musl-dev && \
|
||||||
git clone https://github.com/expanse-project/go-expanse && \
|
git clone https://github.com/expanse-project/go-expanse && \
|
||||||
(cd go-ethereum && git checkout develop) && \
|
(cd go-expanse && git checkout develop) && \
|
||||||
(cd go-ethereum && make gexp) && \
|
(cd go-expanse && make gexp) && \
|
||||||
cp go-ethereum/build/bin/gexp /gexp && \
|
cp go-expanse/build/bin/gexp /gexp && \
|
||||||
apk del go git make gcc musl-dev && \
|
apk del go git make gcc musl-dev && \
|
||||||
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
|
rm -rf /go-expanse && rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
EXPOSE 8545
|
EXPOSE 9656
|
||||||
EXPOSE 30303
|
EXPOSE 42786
|
||||||
|
|
||||||
ENTRYPOINT ["/gexp"]
|
ENTRYPOINT ["/gexp"]
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ import (
|
||||||
"math/big"
|
"math/big"
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/core/types"
|
"github.com/expanse-project/go-expanse/core/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
// nonceHeap is a heap.Interface implementation over 64bit unsigned integers for
|
// nonceHeap is a heap.Interface implementation over 64bit unsigned integers for
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,8 @@ import (
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/core/types"
|
"github.com/expanse-project/go-expanse/core/types"
|
||||||
"github.com/ethereum/go-ethereum/crypto"
|
"github.com/expanse-project/go-expanse/crypto"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Tests that transactions can be added to strict lists and list contents and
|
// Tests that transactions can be added to strict lists and list contents and
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue