Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -534,3 +534,4 @@ Released with 1.0.0-beta.37 code base.
### Fixed
- Fix jsonrpc payload and response types (#4743) (#4761)
- Allowed more flexibility in typing the overly constrained `provider.disconnect` function (#4833)
- Fix bug in handleRevert logic for eth_sendRawTransaction (#4902)
2 changes: 1 addition & 1 deletion packages/web3-core-method/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ Method.prototype._confirmTransaction = function (defer, result, payload) {
to: parsedTx.to,
from: parsedTx.from,
gas: parsedTx.gasLimit.toHexString(),
gasPrice: parsedTx.gasPrice.toHexString(),
gasPrice: parsedTx.gasPrice ? parsedTx.gasPrice.toHexString() : undefined,
value: parsedTx.value.toHexString()
});
}
Expand Down