Skip to content
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

fix: return postCheck error to abci client #507

Merged
merged 15 commits into from
Nov 25, 2022
Prev Previous commit
Next Next commit
Add comments
  • Loading branch information
ulbqb committed Nov 24, 2022
commit eabac2612a65daabf259aab050fd54ee8e985d1c
3 changes: 3 additions & 0 deletions proto/ostracon/abci/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ message ResponseCheckTx {
string codespace = 8;
string sender = 9; // MEMO: not used, just reservation to implement https://github.com/tendermint/tendermint/pull/6740 first
int64 priority = 10; // MEMO: not used, just reservation to implement https://github.com/tendermint/tendermint/pull/6740 first

// mempool_error is set by Ostracon.
// ABCI applictions creating a ResponseCheckTX should not set mempool_error.
string mempool_error = 11;
tnasu marked this conversation as resolved.
Show resolved Hide resolved
}

Expand Down