-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
New App structure #314
New App structure #314
Conversation
} | ||
``` | ||
|
||
While well-written decorators wouldn't mutate any mutable context values, a malicious or buggy plugin can create unwanted side-effects, so it is highly advised for users of Context to only set immutable values. To help enforce this contract, we require values to be certain primitive types, or a Cloner. |
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.
cool!
Data: result.Data, | ||
Log: result.Log, | ||
GasWanted: result.GasWanted, | ||
GasUsed: result.GasUsed, |
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.
why no fee?
return | ||
*/ | ||
// Implements ABCI | ||
func (app *App) EndBlock(req abci.RequestEndBlock) (res abci.ResponseEndBlock) { |
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.
we need a way for plugins to run code here
* feat: add validator by EVM address query to staking module * chore: gofumpt
No description provided.