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

chore: pin orml to specific revision #39

Merged
merged 2 commits into from May 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
106 changes: 48 additions & 58 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Expand Up @@ -70,13 +70,13 @@ substrate-test-runtime-client = { git = 'https://github.com/paritytech/substrate
pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', branch = "polkadot-v0.9.1" }

# ORML dependencies
orml-currencies = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master' }
orml-tokens = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master' }
#orml-unknown-tokens = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master' }
orml-traits = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master' }
orml-utilities = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master' }
#orml-xtokens= { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master' }
#orml-xcm-support = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', branch = 'master' }
orml-currencies = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', rev = '11191abe385c9e74a6f179fc1df0e37c5163e9fe' }
orml-tokens = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', rev = '11191abe385c9e74a6f179fc1df0e37c5163e9fe' }
#orml-unknown-tokens = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', rev = '11191abe385c9e74a6f179fc1df0e37c5163e9fe' }
orml-traits = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', rev = '11191abe385c9e74a6f179fc1df0e37c5163e9fe' }
orml-utilities = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', rev = '11191abe385c9e74a6f179fc1df0e37c5163e9fe' }
#orml-xtokens= { git = 'https://github.com/open-web3-stack/open-runtime-module-library', rev = '11191abe385c9e74a6f179fc1df0e37c5163e9fe' }
#orml-xcm-support = { git = 'https://github.com/open-web3-stack/open-runtime-module-library', rev = '11191abe385c9e74a6f179fc1df0e37c5163e9fe' }

# Polkadot dependencies
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.1" }
Expand Down