Exemplo n.º 1
0
 public ContractSignedCodeLogic(
     IContractSigner contractSigner,
     PubKey signingContractPubKey)
 {
     this.contractSigner        = contractSigner;
     this.signingContractPubKey = signingContractPubKey;
 }
Exemplo n.º 2
0
 public CSharpContractSigner(IContractSigner contractSigner)
 {
     this.contractSigner = contractSigner;
 }
Exemplo n.º 3
0
 public ContractSigningTests()
 {
     this.contractSigner = new ContractSigner();
     this.privKey        = new Mnemonic("lava frown leave wedding virtual ghost sibling able mammal liar wide wisdom").DeriveExtKey().PrivateKey;
     this.pubKey         = this.privKey.PubKey;
 }
 public CSharpContractSignerTests()
 {
     this.contractSigner       = new ContractSigner();
     this.csharpContractSigner = new CSharpContractSigner(this.contractSigner);
     this.privKey = new Key();
 }