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

Update blockchain #131

Merged
merged 26 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a3b63c8
chore: polkadot v0.9.37
GabrielMartinezRodriguez Oct 19, 2023
d4da6db
chore: polkadot v0.9.38
GabrielMartinezRodriguez Oct 19, 2023
6ea2d23
chore: polkadot v0.9.39
GabrielMartinezRodriguez Oct 20, 2023
c54a221
chore: polkadot 0.9.40
GabrielMartinezRodriguez Oct 23, 2023
05b84d1
chore: polkadot v0.9.42
GabrielMartinezRodriguez Oct 26, 2023
a4c95e0
chore: polkadot 0.9.43
GabrielMartinezRodriguez Oct 27, 2023
54f844a
chore: test compile
GabrielMartinezRodriguez Nov 3, 2023
ccfede9
fix: tests
GabrielMartinezRodriguez Nov 6, 2023
8653fe7
chore: added test for authorship and test utils
GabrielMartinezRodriguez Nov 8, 2023
41cbcb0
chore: remove --unsafe-ws-external
GabrielMartinezRodriguez Nov 10, 2023
eb0e7ff
chore: changed rpc port
GabrielMartinezRodriguez Nov 10, 2023
8fc39af
hotifx(custom_fee): reduce calc on type 1
deblanco Nov 13, 2023
75ca187
Revert "hotifx(custom_fee): reduce calc on type 1"
deblanco Nov 13, 2023
b91814c
feat(Runtime): estimate_transaction_len
deblanco Nov 13, 2023
986b7cf
chore: warnings
GabrielMartinezRodriguez Nov 13, 2023
15ce9ea
chore(Cargo): specify codec version
deblanco Nov 13, 2023
cac1e48
log(EVM Runner): validator + token
deblanco Nov 13, 2023
aea4d05
hotfix(Runner): on native transfer unhandle proof_size and weight_limit
deblanco Nov 13, 2023
9ce62b8
feat(Runtime): WeightPerGas & GasPoV update
deblanco Nov 13, 2023
9fa80e1
chore: conflicts
GabrielMartinezRodriguez Nov 14, 2023
cf839b6
chore: expanded test
GabrielMartinezRodriguez Nov 14, 2023
bd46c86
fix: expand and ui test
GabrielMartinezRodriguez Nov 14, 2023
c66a8f3
fix: expanded
GabrielMartinezRodriguez Nov 15, 2023
cd8083b
chore
GabrielMartinezRodriguez Nov 15, 2023
7ea3f98
chore: remove optimized test image
GabrielMartinezRodriguez Nov 15, 2023
06cdf95
Merge branch 'main' into upgrade-stability
GabrielMartinezRodriguez Nov 15, 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,701 changes: 3,165 additions & 1,536 deletions Cargo.lock

Large diffs are not rendered by default.

271 changes: 153 additions & 118 deletions Cargo.toml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ default_to_workspace = false

[tasks.alphanet-dev]
script = [
"cargo run --release -- --dev --unsafe-rpc-external --rpc-cors all --unsafe-ws-external"
"cargo run --release -- --dev --unsafe-rpc-external --rpc-cors all"
]
4 changes: 2 additions & 2 deletions client/authorship/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
bytes = { workspace = true }
hex = { workspace = true }
stability-test-runtime-client = { workspace = true }

[dev-dependencies]
parking_lot = { workspace = true }
sc-transaction-pool = { workspace = true }
stability-test-runtime-client = { workspace = true }
sc-transaction-pool = { workspace = true }
Loading