Skip to content

Commit 635a3a8

Browse files
Tjemmmicdrewstone1xstj
authored
feat: blueprint pricing (#987)
* feat: operator rpc address * feat: rpc address functions * feat: request with quote * fix: removed functions * fix: quotes and signatures in request * fix: remove old commented code * fix: pricing hashing function * fix(ci): test registration and contracts * feat: update runtime * fix: pricing quote extrinsic wip * chore: format * chore: fix ci * chore: fix ci * fix: extrinsic debugging * chore: format * fix: resource pricing type * fix: improved errors and signature debugging --------- Co-authored-by: drewstone <drewstone329@gmail.com> Co-authored-by: 1xstj <106580853+1xstj@users.noreply.github.com>
1 parent 88bb07e commit 635a3a8

File tree

33 files changed

+1698
-961
lines changed

33 files changed

+1698
-961
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
- name: Install latest stable
2222
uses: actions-rs/toolchain@v1
2323
with:
24-
toolchain: stable
24+
toolchain: nightly-2025-01-09
2525
override: true
2626
components: rustfmt
2727

2828
- name: Rustfmt check
29-
run: cargo fmt +nightly-2025-01-09 --all -- --check
29+
run: cargo fmt --all -- --check
3030

3131
test:
3232
env:

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/rpc/debug/src/lib.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -609,13 +609,12 @@ where
609609
} else {
610610
// Pre-london update, legacy transactions.
611611
match transaction {
612-
ethereum::TransactionV2::Legacy(tx) =>
613-
#[allow(deprecated)]
614-
api.trace_transaction_before_version_4(
615-
parent_block_hash,
616-
exts,
617-
tx,
618-
),
612+
#[allow(deprecated)]
613+
ethereum::TransactionV2::Legacy(tx) => api.trace_transaction_before_version_4(
614+
parent_block_hash,
615+
exts,
616+
tx,
617+
),
619618
_ =>
620619
return Err(internal_err(
621620
"Bug: pre-london runtime expects legacy transactions"

0 commit comments

Comments
 (0)