mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 21:17:54 -05:00
PR checklist - remove checkbox for non-mainnet ATs (#5514)
* removed non-mainnetATs line Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com> --------- Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
2
.github/workflows/pr-checklist-on-open.yml
vendored
2
.github/workflows/pr-checklist-on-open.yml
vendored
@@ -16,5 +16,5 @@ jobs:
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: '- [ ] I thought about documentation and added the `doc-change-required` label to this PR if [updates are required](https://wiki.hyperledger.org/display/BESU/Documentation).\n- [ ] I have considered running `./gradlew acceptanceTestNonMainnet` locally if my PR affects non-mainnet modules.\n- [ ] I thought about the changelog and included a [changelog update if required](https://wiki.hyperledger.org/display/BESU/Changelog).\n- [ ] If my PR includes database changes (e.g. KeyValueSegmentIdentifier) I have thought about compatibility and performed forwards and backwards compatibility tests'
|
||||
body: '- [ ] I thought about documentation and added the `doc-change-required` label to this PR if [updates are required](https://wiki.hyperledger.org/display/BESU/Documentation).\n- [ ] I thought about the changelog and included a [changelog update if required](https://wiki.hyperledger.org/display/BESU/Changelog).\n- [ ] If my PR includes database changes (e.g. KeyValueSegmentIdentifier) I have thought about compatibility and performed forwards and backwards compatibility tests'
|
||||
})
|
||||
|
||||
@@ -140,7 +140,7 @@ public class EthCall extends AbstractBlockParameterOrBlockHashMethod {
|
||||
// be decided according to the provided parameters
|
||||
if (callParams.isMaybeStrict().isEmpty()) {
|
||||
transactionValidationParams.isAllowExceedingBalance(
|
||||
isAllowExeedingBalanceAutoSelection(header, callParams));
|
||||
isAllowExceedingBalanceAutoSelection(header, callParams));
|
||||
} else {
|
||||
transactionValidationParams.isAllowExceedingBalance(
|
||||
!callParams.isMaybeStrict().orElse(Boolean.FALSE));
|
||||
@@ -148,7 +148,7 @@ public class EthCall extends AbstractBlockParameterOrBlockHashMethod {
|
||||
return transactionValidationParams.build();
|
||||
}
|
||||
|
||||
private boolean isAllowExeedingBalanceAutoSelection(
|
||||
private boolean isAllowExceedingBalanceAutoSelection(
|
||||
final BlockHeader header, final JsonCallParameter callParams) {
|
||||
|
||||
boolean isZeroGasPrice =
|
||||
|
||||
Reference in New Issue
Block a user