Esempio n. 1
0
 private void CheckIfDeploymentWasSuccesfull(TransactionReceipt transactionReceipt)
 {
     if (transactionReceipt.IsContractAddressEmptyOrEqual("0x0") || transactionReceipt.Failed())
     {
         throw new TransactionException("Something went wrong with the deployment");
     }
 }