Skip to content

Commit

Permalink
Merge branch 'main' into g2
Browse files Browse the repository at this point in the history
  • Loading branch information
feltroidprime authored Dec 2, 2024
2 parents 7b1b916 + 74ba49e commit b896b6c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/maturin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.10.x"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.10.x"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -92,7 +92,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: 3.10.x
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand All @@ -119,7 +119,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.platform.target == 'x86_64' && '3.10' || '3.x' }}
python-version: "3.10.x"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -165,10 +165,10 @@ jobs:
- uses: software-mansion/setup-scarb@v1
with:
scarb-version: "2.8.4"
- name: Set up Python 3.10.14
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10.14
python-version: "3.10.x"
- name: Install dependencies
run: make setup
- name: Verify Contract Declaration
Expand Down
2 changes: 1 addition & 1 deletion hydra/garaga/starknet/cli/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,4 @@ def calldata(
if format == CalldataFormat.starkli:
print(" ".join([str(x) for x in calldata]))
elif format == CalldataFormat.array:
print(calldata)
print(calldata[1:])

0 comments on commit b896b6c

Please sign in to comment.