Skip to content

ABCI++: change "accept/reject" booleans by enum all over the API #8039

@sergio-mena

Description

@sergio-mena

Summary

Several API calls in ABCI++ currently use a boolean "accept" to signal Application's acceptance or rejection of some value.

As part of this issue:

  • All these booleans should be changed to an enum of the form
enum VerifyStatus {
    UNKNOWN = 0;
    ACCEPT  = 1;
    REJECT  = 2;
}
  • The specification should be adapted accordingly to match the change

Dependencies

None


For Admin Use

  • Not duplicate issue
  • Appropriate labels applied
  • Appropriate contributors tagged
  • Contributor assigned/self-assigned

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions