mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +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 \
|
||||
apk add --update go git make gcc musl-dev && \
|
||||
git clone https://github.com/expanse-project/go-expanse && \
|
||||
(cd go-ethereum && git checkout develop) && \
|
||||
(cd go-ethereum && make gexp) && \
|
||||
cp go-ethereum/build/bin/gexp /gexp && \
|
||||
(cd go-expanse && git checkout develop) && \
|
||||
(cd go-expanse && make gexp) && \
|
||||
cp go-expanse/build/bin/gexp /gexp && \
|
||||
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 30303
|
||||
EXPOSE 9656
|
||||
EXPOSE 42786
|
||||
|
||||
ENTRYPOINT ["/gexp"]
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ import (
|
|||
"math/big"
|
||||
"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
|
||||
|
|
|
|||
|
|
@ -21,8 +21,8 @@ import (
|
|||
"math/rand"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/expanse-project/go-expanse/core/types"
|
||||
"github.com/expanse-project/go-expanse/crypto"
|
||||
)
|
||||
|
||||
// Tests that transactions can be added to strict lists and list contents and
|
||||
|
|
|
|||
Loading…
Reference in a new issue