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

refactor!: substrate 3 upgrade #141

Merged
merged 42 commits into from
Mar 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
f559a1e
refactor: substrate 3 upgrade
enthusiastmartin Mar 9, 2021
5df54a6
fix: clippy
enthusiastmartin Mar 10, 2021
53e035b
test(amm): tests adjusted for substrate3
enthusiastmartin Mar 10, 2021
3cb0119
test(asset registry): tests adjusted for substrate3
enthusiastmartin Mar 10, 2021
666258c
test(exchange): tests adjusted for substrate3
enthusiastmartin Mar 10, 2021
39df661
test(faucet): tests adjusted for substrate3
enthusiastmartin Mar 10, 2021
a48e110
test(multipayment): tests adjusted for substrate3
enthusiastmartin Mar 10, 2021
693e78c
test(claims): tests adjusted for substrate3
enthusiastmartin Mar 10, 2021
85a8942
fix: block finalization
martinfridrich Mar 10, 2021
ccf4509
refactor: telemetry_on_connect
martinfridrich Mar 10, 2021
31ab6a0
test(amm): benchmarking tests fixed for substrate3
enthusiastmartin Mar 10, 2021
d5e826f
test(exchange): benchmarking tests fixed for substrate3
enthusiastmartin Mar 10, 2021
32a2524
test(multipayment): benchmarking tests fixed for substrate3
enthusiastmartin Mar 10, 2021
ed37011
Merge branch 'refactor/substrate_3' of github.com:galacticcouncil/Hyd…
enthusiastmartin Mar 10, 2021
080ab4e
refactor(assetregistry): migrate to new pallet macro
enthusiastmartin Mar 11, 2021
5a6af53
refactor(amm): migrate to new pallet macro
enthusiastmartin Mar 11, 2021
15dac7f
test(amm): use account ids in test for new substrate events
enthusiastmartin Mar 12, 2021
d289644
test(amm): use account ids in test for new substrate events
enthusiastmartin Mar 12, 2021
6bb2ebe
refactor(claims): migrate to new pallet macro
enthusiastmartin Mar 15, 2021
93757cc
refactor(faucet): migrate to new pallet macro
enthusiastmartin Mar 15, 2021
22781f7
refactor(payment): migrate to new pallet macro
enthusiastmartin Mar 15, 2021
32171d5
refactor(exchange): migrate to new pallet macro
enthusiastmartin Mar 15, 2021
5d9c624
chore: resolve warnings
enthusiastmartin Mar 15, 2021
5ed52ed
build: update more recent substrate version
enthusiastmartin Mar 15, 2021
e0a063e
build: bump substrate version
enthusiastmartin Mar 15, 2021
fdb81ae
Merge branch 'master' into refactor/substrate_3
enthusiastmartin Mar 15, 2021
f29b4df
Merge branch 'refactor/substrate_3' into refactor/substrate_3_pallets
enthusiastmartin Mar 15, 2021
c95fc5d
fix benchmark build with substrate 3
enthusiastmartin Mar 15, 2021
55232e6
Merge pull request #153 from galacticcouncil/refactor/substrate_3_pal…
enthusiastmartin Mar 15, 2021
93ae2fe
style: reformat
enthusiastmartin Mar 15, 2021
49ae375
build: bump spec version to 3
enthusiastmartin Mar 15, 2021
ffeb867
happy clippy - happy life
enthusiastmartin Mar 15, 2021
ccb3a3b
build: update toolchain in gh workflow
enthusiastmartin Mar 15, 2021
52af2fc
fix(payment): fix multi payment benchmark
enthusiastmartin Mar 15, 2021
baa4fe2
build: fix m1 build by downgrading libc version
jak-pan Mar 15, 2021
fcd9db7
refactor: remove version for local dependencies
enthusiastmartin Mar 16, 2021
cb58283
remove commented code
enthusiastmartin Mar 16, 2021
baae362
refactor(payment): remove migration (orderset type change)
enthusiastmartin Mar 16, 2021
f97090a
refactor: change ssh58 prefix in tests to 63
enthusiastmartin Mar 16, 2021
ebd7828
build: runtime impl version reset to 0
enthusiastmartin Mar 16, 2021
7bada42
Merge branch 'master' into refactor/substrate_3
enthusiastmartin Mar 16, 2021
cee3529
Merge branch 'master' into refactor/substrate_3
enthusiastmartin Mar 16, 2021
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 .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2020-09-27
toolchain: nightly-2021-02-12
target: wasm32-unknown-unknown
override: true
default: true
Expand Down
Loading