Skip to content

Commit

Permalink
Revert "fix: fixes unit test heap memory issue (#2305)"
Browse files Browse the repository at this point in the history
This reverts commit f66da4e.
  • Loading branch information
quiet-node committed Apr 23, 2024
1 parent e1711d6 commit c32fe7c
Show file tree
Hide file tree
Showing 24 changed files with 265 additions and 1,083 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/acceptance-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install make
run: sudo apt-get update; sudo apt-get install build-essential -y


- name: Checkout repo
uses: actions/checkout@v3

Expand Down
49 changes: 1 addition & 48 deletions docs/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -1288,53 +1288,6 @@
"type": "null",
"pattern": "null"
},
"subcall": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": ["CALL", "CREATE"],
"description": "The type of action (CALL for function calls or CREATE for contract creation)."
},
"from": {
"$ref": "#/components/schemas/address",
"description": "The address of the sender."
},
"to": {
"$ref": "#/components/schemas/address",
"description": "The address of the receiver. In the case of a contract creation, this might be null."
},
"value": {
"$ref": "#/components/schemas/uint",
"description": "The value transferred with the call, in hexadecimal."
},
"gas": {
"$ref": "#/components/schemas/uint",
"description": "The gas provided for the call, in hexadecimal."
},
"gasUsed": {
"$ref": "#/components/schemas/uint",
"description": "The gas used during the call, in hexadecimal."
},
"input": {
"$ref": "#/components/schemas/bytes",
"description": "The input data sent with the call."
},
"output": {
"$ref": "#/components/schemas/bytes",
"description": "The output data returned by the call."
},
"error": {
"type": "string",
"description": "Error encountered during the call, if any."
},
"revertReason": {
"type": "string",
"description": "Solidity revert reason, if applicable."
}
},
"required": ["from", "gas", "input"]
},
"Block": {
"title": "Block object",
"type": "object",
Expand Down Expand Up @@ -2105,7 +2058,7 @@
"calls": {
"type": "array",
"items": {
"$ref": "#/components/schemas/subcall"
"$ref": "#/components/schemas/callframe"
},
"description": "Sub-calls made during this call frame."
}
Expand Down
Loading

0 comments on commit c32fe7c

Please sign in to comment.