-
Notifications
You must be signed in to change notification settings - Fork 20.4k
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
Add ImportPreSaleKey #268
Merged
obscuren
merged 2 commits into
ethereum:develop
from
Gustav-Simonsson:import_presale_keys
Jan 22, 2015
Merged
Add ImportPreSaleKey #268
obscuren
merged 2 commits into
ethereum:develop
from
Gustav-Simonsson:import_presale_keys
Jan 22, 2015
Conversation
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
* ImportPreSaleKey takes a KeyStore, a presale key JSON (e.g. file content) and a password string. It stores the key in the given key store. * Refactored common AES decryption and moved some functions to crypto.go
return key, err | ||
} | ||
|
||
func aes_cbc_decrypt(key []byte, cipherText []byte, iv []byte) (plainText []byte, err error) { |
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.
aesCbcDecrypt
acud
pushed a commit
to acud/go-ethereum
that referenced
this pull request
Mar 1, 2018
refactor ShowError and introduce RUID for each HTTP request
ngtuna
pushed a commit
to ngtuna/tomochain
that referenced
this pull request
Nov 10, 2018
…_when_fetch sleep time when fetch receive future block
Zergity
added a commit
to Zergity/go-ethereum
that referenced
this pull request
Apr 28, 2020
…dashboard/assets/eslint-utils-1.4.2 build(deps): bump eslint-utils from 1.3.1 to 1.4.2 in /dashboard/assets
maoueh
pushed a commit
to streamingfast/go-ethereum
that referenced
this pull request
Aug 13, 2021
maoueh
pushed a commit
to streamingfast/go-ethereum
that referenced
this pull request
Dec 15, 2021
* Build with the previous Dockerfile This will recover the classic maticnetwork build in parallel. This will allow to test both images. Also fix the new build manifest. Build on patches too
tony-ricciardi
pushed a commit
to tony-ricciardi/go-ethereum
that referenced
this pull request
Jan 20, 2022
maoueh
pushed a commit
to streamingfast/go-ethereum
that referenced
this pull request
May 3, 2022
* Build with the previous Dockerfile This will recover the classic maticnetwork build in parallel. This will allow to test both images. Also fix the new build manifest. Build on patches too
weiihann
pushed a commit
to weiihann/go-ethereum
that referenced
this pull request
Nov 30, 2023
activate proof generation on fork + remove code dups use go-verkle's post-state API to verify proofs (ethereum#262) use prague as the verkle activation fork (ethereum#263) upgrade to latest go-ipa activate verkle transition in "miner" (ethereum#265) fix: do not force cancunTime upon verkle activation workaround: do not use root translation in replay workaround: deactivate overlay transition for now fixes from trying to get the devnet to work (ethereum#267) this line was left out from the previous commit upgrade to go-verkle with fixed newvalue serialization fix: ensure point cache isn't nil in copy (ethereum#268) fix: dependency cycle in tests (ethereum#269) upgrade to latest go-verkle fix: write trie preimage data to db (ethereum#274) fix: zero-root in produced block + sync (ethereum#275) upgrade go-ipa fix build fix typo include review feedback add switch to add proofs to blocks (ethereum#278) add fee recipient to witness (ethereum#279) touch all fields in withdrawal account header (ethereum#277)
sduchesneau
pushed a commit
to streamingfast/go-ethereum
that referenced
this pull request
Jan 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
and a password string. It stores the key in the given key store.