This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Implement EIP-2565 (option B) #11728
Draft
vorot93
wants to merge
1
commit into
master
Choose a base branch
from
vorot93/eip-2565b
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -116,6 +116,7 @@ struct Linear { | |||||
#[derive(Debug)] | ||||||
struct ModexpPricer { | ||||||
divisor: u64, | ||||||
new_formula: bool, | ||||||
} | ||||||
|
||||||
impl Pricer for Linear { | ||||||
|
@@ -194,7 +195,13 @@ impl Pricer for ModexpPricer { | |||||
|
||||||
let adjusted_exp_len = Self::adjusted_exp_len(exp_len, exp_low); | ||||||
|
||||||
let (gas, overflow) = Self::mult_complexity(m).overflowing_mul(max(adjusted_exp_len, 1)); | ||||||
let complexity_formula = if self.new_formula { | ||||||
Self::mult_complexity_new | ||||||
} else { | ||||||
Self::mult_complexity | ||||||
}; | ||||||
|
||||||
let (gas, overflow) = (complexity_formula)(m).overflowing_mul(max(adjusted_exp_len, 1)); | ||||||
if overflow { | ||||||
return U256::max_value(); | ||||||
} | ||||||
|
@@ -219,6 +226,10 @@ impl ModexpPricer { | |||||
x => (x * x) / 16 + 480 * x - 199_680, | ||||||
} | ||||||
} | ||||||
|
||||||
fn mult_complexity_new(x: u64) -> u64 { | ||||||
((x / 64) + if x % 64 == 0 { 0 } else { 1 }) ^ 2 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replace |
||||||
} | ||||||
} | ||||||
|
||||||
/// Bls12 pairing price | ||||||
|
@@ -407,7 +418,19 @@ impl From<ethjson::spec::builtin::Pricing> for Pricing { | |||||
10 | ||||||
} else { | ||||||
exp.divisor | ||||||
} | ||||||
}, | ||||||
new_formula: false, | ||||||
}) | ||||||
} | ||||||
ethjson::spec::builtin::Pricing::Modexp2(exp) => { | ||||||
Pricing::Modexp(ModexpPricer { | ||||||
divisor: if exp.divisor == 0 { | ||||||
warn!(target: "builtin", "Zero modexp divisor specified. Falling back to default: 10."); | ||||||
10 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} else { | ||||||
exp.divisor | ||||||
}, | ||||||
new_formula: true, | ||||||
}) | ||||||
} | ||||||
ethjson::spec::builtin::Pricing::AltBn128Pairing(pricer) => { | ||||||
|
@@ -1360,7 +1383,7 @@ mod tests { | |||||
#[test] | ||||||
fn modexp() { | ||||||
let f = Builtin { | ||||||
pricer: btreemap![0 => Pricing::Modexp(ModexpPricer { divisor: 20 })], | ||||||
pricer: btreemap![0 => Pricing::Modexp(ModexpPricer { divisor: 20, new_formula: false })], | ||||||
native: EthereumBuiltin::from_str("modexp").unwrap(), | ||||||
}; | ||||||
|
||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -4827,10 +4827,21 @@ | |||||
"0x0000000000000000000000000000000000000005": { | ||||||
"builtin": { | ||||||
"name": "modexp", | ||||||
"activate_at": "0x42ae50", | ||||||
"pricing": { | ||||||
"modexp": { | ||||||
"divisor": 20 | ||||||
"0x42ae50": { | ||||||
"price": { | ||||||
"modexp": { | ||||||
"divisor": 20 | ||||||
} | ||||||
} | ||||||
}, | ||||||
"0x7fffffffffffff": { | ||||||
"info": "EIP 2565 transition at block X", | ||||||
"price": { | ||||||
"modexp2": { | ||||||
"divisor": 20 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
} | ||||||
} | ||||||
} | ||||||
} | ||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(gas / self.divisor as u64).into() --> min((gas / self.divisor as u64).into(),100)
This sets a minimum gas price of 100
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI this is a couple rows down but it wouldn't let me comment on it for some reason
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
EIP has been updated to set the minimum gas price at 200