nits
error msg note update make docker-image
This commit is contained in:
parent
ae33dce5af
commit
480b38cb8a
3
Makefile
3
Makefile
@ -9,7 +9,8 @@ $(MOCKS_DIR)/gen_backend.go:
|
||||
github.com/openrelayxyz/plugeth-utils/core Backend,Downloader
|
||||
|
||||
docker-image: mocks
|
||||
docker build . -t "cerc/plugeth-statediff:local"
|
||||
docker build . -t "cerc/plugeth-statediff:local" \
|
||||
--build-arg GIT_VDBTO_TOKEN=$(GIT_VDBTO_TOKEN)
|
||||
.PHONY: docker-image
|
||||
|
||||
# Local build
|
||||
|
@ -7,7 +7,7 @@ laconic_so="${LACONIC_SO:-laconic-so} --stack fixturenet-plugeth-tx --verbose"
|
||||
|
||||
CONFIG_DIR=$(readlink -f "${CONFIG_DIR:-$(mktemp -d)}")
|
||||
|
||||
# By default assume we are running in the project root
|
||||
# Point stack-orchestrator to the multi-project root
|
||||
export CERC_REPO_BASE_DIR="${CERC_REPO_BASE_DIR:-$(realpath $(git rev-parse --show-toplevel)/..)}"
|
||||
|
||||
# v5 migrations only go up to version 18
|
||||
|
@ -63,18 +63,16 @@ func TestSymmetricDifferenceIterator(t *testing.T) {
|
||||
triea.NodeIterator([]byte("jars")),
|
||||
trieb.NodeIterator(nil))
|
||||
for di.Next(true) {
|
||||
t.Errorf("iterator should not yield any elements")
|
||||
t.Logf("%s", di.LeafKey())
|
||||
t.Errorf("iterator should not yield any elements, but got key %s", di.Path())
|
||||
}
|
||||
assert.Equal(t, 0, *count)
|
||||
|
||||
// TODO will fail until merged: https://github.com/ethereum/go-ethereum/pull/27838
|
||||
// // TODO will fail until merged: https://github.com/ethereum/go-ethereum/pull/27838
|
||||
// di, count = utils.NewSymmetricDifferenceIterator(
|
||||
// triea.NodeIterator([]byte("food")),
|
||||
// trieb.NodeIterator(nil))
|
||||
// for di.Next(true) {
|
||||
// t.Errorf("iterator should not yield any elements")
|
||||
// t.Logf("%s", di.LeafKey())
|
||||
// t.Errorf("iterator should not yield any elements, but got key %s", di.Path())
|
||||
// }
|
||||
// assert.Equal(t, 0, *count)
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user