-
Notifications
You must be signed in to change notification settings - Fork 869
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: eliminate circular dependencies in web3.js (#24729)
* chore: enable circular dependency warnings on build * fix: eliminate circular dependencies in web3.js
- Loading branch information
1 parent
b1a331f
commit f126f3a
Showing
5 changed files
with
26 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Maximum over-the-wire size of a Transaction | ||
* | ||
* 1280 is IPv6 minimum MTU | ||
* 40 bytes is the size of the IPv6 header | ||
* 8 bytes is the size of the fragment header | ||
*/ | ||
export const PACKET_DATA_SIZE = 1280 - 40 - 8; | ||
|
||
export const SIGNATURE_LENGTH_IN_BYTES = 64; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters