Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some comments #6878

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sidebar_label: web3.eth.Contract

### Receipt Status

The `receipt.status` will now be be an `unsigned integer` instead of `boolean` value to comply with the specification.
The `receipt.status` will now be an `unsigned integer` instead of `boolean` value to comply with the specification.

```ts
// in 1.x
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-eth/test/e2e/e2e_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ along with web3.js. If not, see <http://www.gnu.org/licenses/>.
*/

/**
* @NOTE This Util method is kept seperate from shared system_test_utils.ts file because
* @NOTE This Util method is kept separate from shared system_test_utils.ts file because
* of it's import of .secrets.json. For this method to exist in shared system_test_utils.ts
* file, the import path would be ../.secrets.json which doesn't resolve when the file is
* copied over to each package's test directory. Because web3 package is the only package
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-types/src/eth_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ export interface FeeData {
readonly gasPrice?: Numbers;

/**
* The baseFeePerGas returned from the the last available block.
* The baseFeePerGas returned from the last available block.
*
* If EIP-1559 is not supported, this will be `undefined`
*
Expand Down
2 changes: 1 addition & 1 deletion packages/web3/test/e2e/e2e_utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ along with web3.js. If not, see <http://www.gnu.org/licenses/>.
*/

/**
* @NOTE This Util method is kept seperate from shared system_test_utils.ts file because
* @NOTE This Util method is kept separate from shared system_test_utils.ts file because
* of it's import of .secrets.json. For this method to exist in shared system_test_utils.ts
* file, the import path would be ../.secrets.json which doesn't resolve when the file is
* copied over to each package's test directory. Because web3 package is the only package
Expand Down
Loading