Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CodeInfo support #57

Merged
merged 33 commits into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c0bff62
Fixed clippy warning.
DariuszDepta Aug 31, 2023
78fb59d
Fixed cargo doc warnings.
DariuszDepta Aug 31, 2023
c9c76fa
Updated dependencies.
DariuszDepta Aug 31, 2023
47dadbf
Added CodeInfo stub for WasmQuery.
DariuszDepta Aug 31, 2023
b1d74c3
Refactoring.
DariuszDepta Sep 1, 2023
5622734
Refactoring.
DariuszDepta Sep 1, 2023
f370640
Updated dependencies.
DariuszDepta Sep 1, 2023
3daa34f
Updated dependencies.
DariuszDepta Sep 1, 2023
ab61758
Refactoring.
DariuszDepta Sep 1, 2023
a24f96a
Added test for CodeInfo.
DariuszDepta Sep 1, 2023
03916d0
Handled CodeInfo query.
DariuszDepta Sep 1, 2023
ca010f8
Added code creator.
DariuszDepta Sep 1, 2023
335040c
Generalized store_code function.
DariuszDepta Sep 1, 2023
d281651
Added unit tests.
DariuszDepta Sep 1, 2023
b341d42
Updated Circle CI
DariuszDepta Sep 1, 2023
1669134
Refactored tests.
DariuszDepta Sep 1, 2023
2dcd18b
Refactored tests.
DariuszDepta Sep 1, 2023
8878e5d
Added code documentation.
DariuszDepta Sep 4, 2023
773bdb8
Refactoring.
DariuszDepta Sep 5, 2023
7011a33
Refactoring.
DariuszDepta Sep 5, 2023
c285a79
Refactoring.
DariuszDepta Sep 5, 2023
f4bf2a9
Added store_code_with_creator function.
DariuszDepta Sep 5, 2023
383c02d
Refactoring.
DariuszDepta Sep 5, 2023
3c02703
Refactoring.
DariuszDepta Sep 5, 2023
bbd29c0
Refactoring.
DariuszDepta Sep 5, 2023
a91971b
Added feature multitest_api_1_0
DariuszDepta Sep 7, 2023
74fb609
Removed useless tests.
DariuszDepta Sep 7, 2023
29723e7
Fixed checking checksum in tests.
DariuszDepta Sep 7, 2023
26fefe6
Renamed storer to creator.
DariuszDepta Sep 7, 2023
cf903a8
Added test for different contracts.
DariuszDepta Sep 7, 2023
d82bb2d
Applied multitest_api_1_0 feature.
DariuszDepta Sep 7, 2023
cadea68
Used llvm engine in code coverage.
DariuszDepta Sep 7, 2023
62d7d29
Renamed to wasm_keeper().
DariuszDepta Sep 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,6 @@ jobs:
command: |
mkdir -p cov
docker run --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin \
sh -c "cargo tarpaulin --workspace --skip-clean --frozen --out Xml --output-dir cov"
sh -c "cargo tarpaulin --workspace --all-features --skip-clean --frozen --out Xml --output-dir cov"
- codecov/upload:
file: cov/cobertura.xml
Loading