Skip to content

Commit 7d431d7

Browse files
KayanskiBuckram123
andauthored
AccountTrace Serialization was done in the wrong order (#544)
Co-authored-by: Buckram <buckram123@gmail.com>
1 parent ca2270a commit 7d431d7

File tree

58 files changed

+1026
-786
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1026
-786
lines changed

.circleci/config.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
125125
build-framework:
126126
docker:
127-
- image: cimg/rust:1.80.0
127+
- image: cimg/rust:1.83.0
128128
resource_class: xlarge
129129
steps:
130130
- setup_remote_docker
@@ -157,7 +157,7 @@ jobs:
157157
git checkout "$CIRCLE_BRANCH-build"
158158
- restore_cache:
159159
keys:
160-
- cargocache-v2-build-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
160+
- cargocache-v2-build-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
161161
- run:
162162
name: Build framework WASM artifacts
163163
command: |
@@ -170,7 +170,7 @@ jobs:
170170
- framework/target/debug/.fingerprint
171171
- framework/target/debug/build
172172
- framework/target/debug/deps
173-
key: cargocache-v2-build-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
173+
key: cargocache-v2-build-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
174174
- run:
175175
name: Import GPG Key
176176
command: |
@@ -203,7 +203,7 @@ jobs:
203203

204204
build-modules:
205205
docker:
206-
- image: cimg/rust:1.80.0
206+
- image: cimg/rust:1.83.0
207207
resource_class: xlarge
208208
steps:
209209
- setup_remote_docker
@@ -271,7 +271,7 @@ jobs:
271271

272272
build-schemas:
273273
docker:
274-
- image: cimg/rust:1.80.0
274+
- image: cimg/rust:1.83.0
275275
resource_class: xlarge
276276
steps:
277277
- setup_remote_docker
@@ -297,7 +297,7 @@ jobs:
297297
git checkout "$CIRCLE_BRANCH-build"
298298
- restore_cache:
299299
keys:
300-
- cargocache-v2-build-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
300+
- cargocache-v2-build-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
301301
- run:
302302
name: Generate schemas
303303
command: |
@@ -370,7 +370,7 @@ jobs:
370370
371371
tests:
372372
docker:
373-
- image: cimg/rust:1.80.0
373+
- image: cimg/rust:1.83.0
374374
resource_class: xlarge
375375
steps:
376376
- checkout
@@ -381,7 +381,7 @@ jobs:
381381
cargo generate-lockfile
382382
- restore_cache:
383383
keys:
384-
- cargocache-v2-tests-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
384+
- cargocache-v2-tests-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}
385385
- run:
386386
name: Modules tests
387387
command: |
@@ -392,11 +392,11 @@ jobs:
392392
- modules/target/debug/.fingerprint
393393
- modules/target/debug/build
394394
- modules/target/debug/deps
395-
key: cargocache-v2-tests-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
395+
key: cargocache-v2-tests-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}
396396

397397
deploy:
398398
docker:
399-
- image: cimg/rust:1.80.0
399+
- image: cimg/rust:1.83.0
400400
resource_class: large
401401
steps:
402402
- checkout
@@ -409,7 +409,7 @@ jobs:
409409
fi
410410
- restore_cache:
411411
keys:
412-
- cargocache-v2-deploy-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
412+
- cargocache-v2-deploy-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
413413
- run:
414414
name: Decode and Deploy
415415
command: |
@@ -450,11 +450,11 @@ jobs:
450450
- framework/target/debug/.fingerprint
451451
- framework/target/debug/build
452452
- framework/target/debug/deps
453-
key: cargocache-v2-deploy-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
453+
key: cargocache-v2-deploy-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
454454

455455
modules-coverage:
456456
docker:
457-
- image: cimg/rust:1.80.0
457+
- image: cimg/rust:1.83.0
458458
resource_class: xlarge
459459
steps:
460460
- setup_remote_docker
@@ -468,7 +468,7 @@ jobs:
468468
fi
469469
- restore_cache:
470470
keys:
471-
- cargocache-v2-coverage-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
471+
- cargocache-v2-coverage-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}
472472
- run:
473473
name: Run tests with coverage for modules
474474
command: |
@@ -481,11 +481,11 @@ jobs:
481481
- modules/target/debug/.fingerprint
482482
- modules/target/debug/build
483483
- modules/target/debug/deps
484-
key: cargocache-v2-deploy-rust:1.80.0-{{ checksum "modules/Cargo.lock" }}
484+
key: cargocache-v2-deploy-rust:1.83.0-{{ checksum "modules/Cargo.lock" }}
485485

486486
framework-coverage:
487487
docker:
488-
- image: cimg/rust:1.80.0
488+
- image: cimg/rust:1.83.0
489489
resource_class: xlarge
490490
steps:
491491
- rust_install_nightly
@@ -500,7 +500,7 @@ jobs:
500500
fi
501501
- restore_cache:
502502
keys:
503-
- cargocache-v2-coverage-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
503+
- cargocache-v2-coverage-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
504504
- run:
505505
name: Run tests with coverage for framework
506506
command: |
@@ -513,7 +513,7 @@ jobs:
513513
- framework/target/debug/.fingerprint
514514
- framework/target/debug/build
515515
- framework/target/debug/deps
516-
key: cargocache-v2-deploy-rust:1.80.0-{{ checksum "framework/Cargo.lock" }}
516+
key: cargocache-v2-deploy-rust:1.83.0-{{ checksum "framework/Cargo.lock" }}
517517

518518
pass:
519519
docker:

framework/Cargo.lock

Lines changed: 23 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)