Skip to content

Commit

Permalink
Problem: duplicate pystarport (#868)
Browse files Browse the repository at this point in the history
Solution: remove it
  • Loading branch information
mmsqe authored Sep 29, 2022
1 parent 508791e commit 8514670
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 1,344 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
max-line-length = 88
extend-ignore = E203
exclude = .git,__pycache__,./pystarport/pystarport/tendermint,./pystarport/pystarport/proto_python,./third_party/cosmos-sdk,./third_party/ibc-go
exclude = .git,__pycache__,./pystarport/tendermint,./pystarport/proto_python,./third_party/cosmos-sdk,./third_party/ibc-go
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ linters:
- unconvert

linters-settings:
exclude: ./pystarport/pystarport/*
exclude: ./pystarport/*
govet:
check-shadowing: true
errcheck:
Expand Down
4 changes: 2 additions & 2 deletions docker.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ in
chaindImage =
pkgs.dockerTools.buildLayeredImage {
name = "crypto-org-chain/chain-maind";
config.Entrypoint = [ "${self.chain-maind}/bin/chain-maind" ];
config.Entrypoint = [ "${pkgs.callPackage ./. {}}/bin/chain-maind" ];
};

pystarportImage =
pkgs.dockerTools.buildLayeredImage {
name = "crypto-org-chain/chain-main-pystarport";
config.Entrypoint = [ "${self.pystarport}/bin/pystarport" ];
config.Entrypoint = [ "${pkgs.test-env}/bin/pystarport" ];
};
}
Loading

0 comments on commit 8514670

Please sign in to comment.