Skip to content
New issue

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

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

Already on GitHub? # to your account

Fix dependencies polkadotv1 #21

Merged
merged 28 commits into from
Dec 7, 2023
Merged
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
21370f5
update format to match the one for polkadot
tlacloc Oct 18, 2023
de38b35
📦 chore(rust-toolchain.toml): add rust-toolchain.toml file to specify…
tlacloc Oct 18, 2023
c796692
🔧 chore(Cargo.toml): update sp-runtime dependency to remove version c…
tlacloc Oct 18, 2023
6ac39b0
🔄 chore(rust-toolchain.toml): update Rust toolchain to nightly-2023-0…
tlacloc Oct 18, 2023
d53eb3e
🔧 chore(lib.rs): update Scale trait implementation to use BlockNumber…
tlacloc Oct 18, 2023
9dfef1d
📦 chore(pallets): update dependency versions in Cargo.toml files
tlacloc Oct 18, 2023
d384a53
wip update mapped assets
tlacloc Oct 24, 2023
17d6130
🚀 chore(mapped-assets): update dependencies in Cargo.toml to latest v…
tlacloc Oct 24, 2023
5e443de
update deps
tlacloc Oct 24, 2023
711e290
🚀 chore(Cargo.toml): update dependencies versions to improve compatib…
tlacloc Oct 24, 2023
8dc111c
🚀 chore(Cargo.toml): update dependencies versions for lite-json, fram…
tlacloc Oct 24, 2023
64f1f0d
🔍 chore(.gitignore): add log files to be ignored by git
tlacloc Oct 24, 2023
0187673
🔧 chore(lib.rs): add #[derive(Default)] to the GenesisConfig struct i…
tlacloc Oct 24, 2023
b05e7bf
Fix build issues polkadotv1 (#22)
sebastianmontero Oct 27, 2023
ddc4779
update deps
tlacloc Oct 30, 2023
d61dc78
🐛 fix(mock.rs): change Balance type from u128 to u64 to reduce memory…
tlacloc Oct 30, 2023
1970cf8
🔧 fix(tests.rs): update struct field names in sign_up_works, update_u…
tlacloc Oct 30, 2023
13d45c2
update tests
tlacloc Oct 30, 2023
d19802d
🐛 fix(functions.rs): remove unnecessary mutability of transaction var…
tlacloc Oct 30, 2023
cb14366
🔧 chore(lib.rs): remove unused code and comments for improved code re…
tlacloc Oct 31, 2023
abcf44e
🔀 chore(lib.rs): refactor BDKServicesURL initialization to use self.b…
tlacloc Oct 31, 2023
1b4550c
🚀 feat(mock.rs): import InitialSetupArgs struct
tlacloc Nov 7, 2023
aed7db1
🔧 fix(tests.rs): rename create_sell_order to create_offer and take_se…
tlacloc Nov 7, 2023
4247a64
bump v1.3.0 (#23)
tlacloc Dec 4, 2023
dac8b05
Fix/pallet tests (#24)
tlacloc Dec 5, 2023
a7ffb98
update cargo lock
tlacloc Dec 5, 2023
6fe0343
🐛 fix(mock.rs): update MaxConsumers constant to 3 to allow for more c…
tlacloc Dec 7, 2023
2cc2ad0
🔍 chore(check.yml): add a step to check tests in the CI workflow for …
tlacloc Dec 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
4 changes: 4 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -49,3 +49,7 @@ jobs:
# run: >
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GPT summary of 1eecd5 - 07bf6d:

  • Added a new job called "Check Test"
  • This job runs the command "SKIP_WASM_BUILD=1 cargo test --release --all"

# pushd node &&
# cargo check --features=runtime-benchmarks --release

- name: Check Test
run: |
SKIP_WASM_BUILD=1 cargo test --release --all
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Generated by Cargo

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GPT summary of 74e112 - 6ea5fa:

  • Added a line to ignore files ending in log
  • Added /pallets/fund-admin/scripts to the ignore list

# will have compiled files and executables
*log
**/target/
# These are backup files generated by rustfmt
**/*.rs.bk
@@ -39,4 +40,4 @@ md5-wasm
md5-genesis-head

# Fund-admin scripts
/pallets/fund-admin/scripts
/pallets/fund-admin/scripts
Loading