quorum.go 427 B

12345678910111213
  1. package common
  2. const (
  3. //Hex-encoded 64 byte array of "17" values
  4. MaxPrivateIntrinsicDataHex = "11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111"
  5. )
  6. // Set contract address, using value that doesn't conflict with upstream geth, or with Besu
  7. func QuorumPrivacyPrecompileContractAddress() Address {
  8. return BytesToAddress([]byte{byte(0x7a)})
  9. }