-
Notifications
You must be signed in to change notification settings - Fork 140
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
use upstream instruction sets #657
base: master
Are you sure you want to change the base?
Conversation
|
||
type StateDB = vm.StateDB | ||
|
||
func TestStatefulPrecompile(t *testing.T) { |
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.
this test has to move out of core/vm, since we want to get the statedb with the hook configured.
NativeAssetBalanceAddr = vm.NativeAssetBalanceAddr | ||
PackNativeAssetBalanceInput = vm.PackNativeAssetBalanceInput | ||
NativeAssetCallAddr = vm.NativeAssetCallAddr | ||
PackNativeAssetCallInput = vm.PackNativeAssetCallInput | ||
) | ||
|
||
type StateDB = vm.StateDB |
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.
these are just temporary, we can do the replace in the text below before merging.
left the text mostly as is in case we also want to move these out of the vm
package.
Why this should be merged
How this works
How this was tested