Ejemplo n.º 1
0
 public Signature Sign(PrivateKey privateKey, Keccak message)
 {
     throw new InvalidOperationException($"{nameof(NullEthereumEcdsa)} does not expect any calls");
 }
Ejemplo n.º 2
0
 public void Sign(PrivateKey privateKey, Transaction tx, long blockNumber)
 {
     throw new InvalidOperationException($"{nameof(NullEthereumEcdsa)} does not expect any calls");
 }
Ejemplo n.º 3
0
 private bool Equals(PrivateKey other)
 {
     return(Bytes.AreEqual(KeyBytes, other.KeyBytes));
 }