We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems the network could not find or call the EndBlock function of the x/clock module, causing the contract state to stay still
EndBlock
x/clock
The text was updated successfully, but these errors were encountered:
After debugging, I discovered that the EndBlock function signature was changed:
After switching ctx to context.Context, and retrieved sdk.Context via: sdkCtx := sdk.UnwrapSDKContext(ctx), the bug was fixed
ctx
context.Context
sdk.Context
sdkCtx := sdk.UnwrapSDKContext(ctx)
Sorry, something went wrong.
fixed in #2
No branches or pull requests
It seems the network could not find or call the
EndBlock
function of thex/clock
module, causing the contract state to stay stillThe text was updated successfully, but these errors were encountered: