Remove pointless "return" in DeployAtTransaction

This commit is contained in:
catbref 2020-05-04 08:18:59 +01:00
parent cfb7a3cc4c
commit 800103225b

View File

@ -65,7 +65,6 @@ public class DeployAtTransaction extends Transaction {
try {
String atAddress = Crypto.toATAddress(TransactionTransformer.toBytesForSigning(this.deployATTransactionData));
this.deployATTransactionData.setAtAddress(atAddress);
return;
} catch (TransformationException e) {
throw new DataException("Unable to generate AT address");
}