-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Accept useroperation with missing gas prices and limits eth_estimateU…
…serOperationGas (#12) * fix: accept useroperation with missing gas prices and limits eth_estimateUserOperationGas * fix: add gas overhead for the entrypoint * fix: only do binary search if call_gas_limit is zero * Bump version
- Loading branch information
1 parent
1e52bc2
commit 27db6e4
Showing
9 changed files
with
140 additions
and
40 deletions.
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
Binary file not shown.
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
use target_info::Target; | ||
|
||
pub const VERSION: &str = "Voltaire/v0.1.0a27"; | ||
pub const VERSION: &str = "Voltaire/v0.1.0a29"; | ||
|
||
/// Returns `VERSION`, but with platform information appended to the end. | ||
/// | ||
/// ## Example | ||
/// | ||
/// `Voltaire/v0.1.0a27/x86_64-linux` | ||
/// `Voltaire/v0.1.0a29/x86_64-linux` | ||
pub fn version_with_platform() -> String { | ||
format!("{}/{}-{}", VERSION, Target::arch(), Target::os()) | ||
} |