Skip to content

Commit

Permalink
feat:add op tx type
Browse files Browse the repository at this point in the history
Signed-off-by: grapebaba <[email protected]>
  • Loading branch information
GrapeBaBa committed Nov 13, 2023
1 parent 287f0c2 commit 9004b1c
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: checks
on:
push:
branches: [ main ]
branches: [ release-23.10.x, main ]
pull_request:
workflow_dispatch:

jobs:
spotless:
runs-on: [besu-research-ubuntu-16]
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout Repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ name: "CodeQL"

on:
push:
branches: [ main ]
branches: [ release-23.10.x, main ]
pull_request:
branches: [ main ]
branches: [ release-23.10.x, main ]
paths-ignore:
- '**/*.json'
- '**/*.md'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dco.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: dco
on:
pull_request:
branches: [ release-23.10.x, main ]
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-checklist-on-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "comment on pr with checklist"
on:
pull_request_target:
types: [ opened ]
branches: [ main ]
branches: [ release-23.10.x, main ]
jobs:
checklist:
name: "add checklist as a comment on newly opened PRs"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/repolinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ on:
branches:
- master
- main
- release-23.10.x
pull_request:
branches:
- master
- main
- release-23.10.x

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
Analysis:
runs-on: ubuntu-latest
if: github.repository == 'hyperledger/besu'
if: github.repository == 'optimism-java/op-besu'
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ public enum TransactionType {
/** Eip1559 transaction type. */
EIP1559(0x02),
/** Blob transaction type. */
BLOB(0x03);
BLOB(0x03),

/** Optimism Deposit transaction type. */
OPTIMISM_DEPOSIT(0x7e);

private static final Set<TransactionType> ACCESS_LIST_SUPPORTED_TRANSACTION_TYPES =
Set.of(ACCESS_LIST, EIP1559, BLOB);
Expand Down

0 comments on commit 9004b1c

Please sign in to comment.