-
Notifications
You must be signed in to change notification settings - Fork 7
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
Pass enabled precompiles to geth #61
Conversation
2a06865
to
041336b
Compare
@@ -223,7 +223,7 @@ replace ( | |||
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0 | |||
// Use cosmos-sdk fork with staking transfer events, and custom tally handler support | |||
github.com/cosmos/cosmos-sdk => github.com/kava-labs/cosmos-sdk v0.47.10-kava.2 | |||
github.com/ethereum/go-ethereum => github.com/Kava-Labs/go-ethereum v1.10.27-0.20240308170502-da7973e5eee0 | |||
github.com/ethereum/go-ethereum => github.com/Kava-Labs/go-ethereum v1.10.27-0.20240513233504-6e038346780b |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it relies on a specific geth git hash / pr, it would be useful to link to it in the pr description 😄 so its easier to track which requires which
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it relies on latest commit of kava/release/1.10/
which is our main branch in geth fork.
So basically I just updated geth dependency, because I needed NewEVMWithEnabledPrecompiles
which we recently merged into geth fork.
@@ -138,6 +138,15 @@ func (p Params) EIPs() []int { | |||
return eips | |||
} | |||
|
|||
func (p Params) EnabledPrecompileAddrs() []common.Address { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add doc comment for public method, and some basic tests would be good
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days-before-close if no further activity occurs. |
No description provided.