Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
pnpm v8
Browse files Browse the repository at this point in the history
  • Loading branch information
CremaFR committed Jul 31, 2023
1 parent 82ee8bb commit a63fc9d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand All @@ -64,7 +64,7 @@ jobs:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand All @@ -86,7 +86,7 @@ jobs:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion src/services/policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ interface TransferEvent {
symbole?: string;
name?: string;
type?: string;
decimals?: number;
}

/**
Expand Down Expand Up @@ -246,7 +247,6 @@ const sanitizeCallData = (calldata: any): Array<string> => {
const getTrace = async (
transaction: Invocation & InvocationsDetailsWithNonce
): Promise<SimulatedTransaction> => {
// starknet.js is not very smart
transaction.calldata = sanitizeCallData(transaction.calldata || []);
const trace = await provider.getSimulateTransaction([transaction as any], {
skipValidate: true,
Expand Down

0 comments on commit a63fc9d

Please sign in to comment.