diff --git a/src/main/java/org/qortal/block/GenesisBlock.java b/src/main/java/org/qortal/block/GenesisBlock.java index d5fdc210..4d4c407a 100644 --- a/src/main/java/org/qortal/block/GenesisBlock.java +++ b/src/main/java/org/qortal/block/GenesisBlock.java @@ -143,7 +143,7 @@ public class GenesisBlock extends Block { /** * Refuse to calculate genesis block's minter signature! *
- * This is not possible as there is no private key for the genesis account and so no way to sign data. + * This is not possible as there is no private key for the null account and so no way to sign data. *
* Always throws IllegalStateException. * @@ -151,13 +151,13 @@ public class GenesisBlock extends Block { */ @Override public void calcMinterSignature() { - throw new IllegalStateException("There is no private key for genesis account"); + throw new IllegalStateException("There is no private key for null account"); } /** * Refuse to calculate genesis block's transactions signature! *
- * This is not possible as there is no private key for the genesis account and so no way to sign data. + * This is not possible as there is no private key for the null account and so no way to sign data. *
* Always throws IllegalStateException. * @@ -165,13 +165,13 @@ public class GenesisBlock extends Block { */ @Override public void calcTransactionsSignature() { - throw new IllegalStateException("There is no private key for genesis account"); + throw new IllegalStateException("There is no private key for null account"); } /** * Generate genesis block minter signature. *
- * This is handled differently as there is no private key for the genesis account and so no way to sign data. + * This is handled differently as there is no private key for the null account and so no way to sign data. * * @return byte[] */