mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
core: added p256Verify precompile to fix TestPrecompiledP256Verify
This commit is contained in:
parent
aaf31237f4
commit
b1a5900556
1 changed files with 3 additions and 0 deletions
|
|
@ -69,6 +69,9 @@ var allPrecompiles = map[common.Address]PrecompiledContract{
|
|||
common.BytesToAddress([]byte{0x0f, 0x0e}): &bls12381Pairing{},
|
||||
common.BytesToAddress([]byte{0x0f, 0x0f}): &bls12381MapG1{},
|
||||
common.BytesToAddress([]byte{0x0f, 0x10}): &bls12381MapG2{},
|
||||
common.BytesToAddress([]byte{0x0f, 0x11}): &bls12381MapG1{},
|
||||
common.BytesToAddress([]byte{0x0f, 0x12}): &bls12381MapG2{},
|
||||
common.BytesToAddress([]byte{0x01, 0x00}): &p256Verify{},
|
||||
}
|
||||
|
||||
// EIP-152 test vectors
|
||||
|
|
|
|||
Loading…
Reference in a new issue