This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Description
The specification of EIP 86 suggests that new contracts be created using the semantics of the CREATE2(value, salt, mem_start, mem_size) opcode. Primarily, this requires new contract addresses be created from hash(sender + salt + code_hash).
Currently it seems that Parity does not match the spec since:
Hopefully I'm not missing something very basic here.