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

refactor: deglobalization of bls_legacy_scheme 3/N #6508

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: rename argument name for IsTriviallyValid for protx
Old name 'use legacy scheme' is incorrect, because this flag means 'is basic scheme' used
  • Loading branch information
knst committed Dec 25, 2024
commit b5cd09e58d596787a3d46133c5975876bfb9ffc2
8 changes: 4 additions & 4 deletions src/evo/providertx.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class CProRegTx
return obj;
}

bool IsTriviallyValid(bool is_bls_legacy_scheme, TxValidationState& state) const;
bool IsTriviallyValid(bool is_basic_scheme_active, TxValidationState& state) const;
knst marked this conversation as resolved.
Show resolved Hide resolved
};

class CProUpServTx
Expand Down Expand Up @@ -192,7 +192,7 @@ class CProUpServTx
return obj;
}

bool IsTriviallyValid(bool is_bls_legacy_scheme, TxValidationState& state) const;
bool IsTriviallyValid(bool is_basic_scheme_active, TxValidationState& state) const;
};

class CProUpRegTx
Expand Down Expand Up @@ -257,7 +257,7 @@ class CProUpRegTx
return obj;
}

bool IsTriviallyValid(bool is_bls_legacy_scheme, TxValidationState& state) const;
bool IsTriviallyValid(bool is_basic_scheme_active, TxValidationState& state) const;
};

class CProUpRevTx
Expand Down Expand Up @@ -321,7 +321,7 @@ class CProUpRevTx
return obj;
}

bool IsTriviallyValid(bool is_bls_legacy_scheme, TxValidationState& state) const;
bool IsTriviallyValid(bool is_basic_scheme_active, TxValidationState& state) const;
};

template <typename ProTx>
Expand Down