-
Couldn't load subscription status.
- Fork 5
feat(core/types): fine-grained Body RLP override
#109
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
Changes from 19 commits
dd502c5
95828a3
d5b6b82
1efa2eb
05463ce
7f6289d
c114751
f61ec75
069b026
3fac457
0eed36d
1ebcae8
43eb635
6e24dbd
3367753
683245c
51fe62b
d509bd2
77188ef
f072b4d
b3ce131
be3132a
c07df8d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| // Copyright 2025 the libevm authors. | ||
| // | ||
| // The libevm additions to go-ethereum are free software: you can redistribute | ||
| // them and/or modify them under the terms of the GNU Lesser General Public License | ||
| // as published by the Free Software Foundation, either version 3 of the License, | ||
| // or (at your option) any later version. | ||
| // | ||
| // The libevm additions are distributed in the hope that they will be useful, | ||
| // but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser | ||
| // General Public License for more details. | ||
| // | ||
| // You should have received a copy of the GNU Lesser General Public License | ||
| // along with the go-ethereum library. If not, see | ||
| // <http://www.gnu.org/licenses/>. | ||
|
|
||
| package common | ||
|
|
||
| // PointerTo is a convenience wrapper for creating a pointer to a value. | ||
| func PointerTo[T any](x T) *T { return &x } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: Should we consider adding new code to separate packages when they are not needed for use in the shared package with geth? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the overwhelming number of cases I do this (in the |
||
Uh oh!
There was an error while loading. Please reload this page.