We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3383bf5 + e73ff6a commit 0e47620Copy full SHA for 0e47620
1 file changed
src/noobchain/Transaction.java
@@ -37,7 +37,8 @@ public boolean processTransaction() {
37
38
//Checks if transaction is valid:
39
if(getInputsValue() < NoobChain.minimumTransaction) {
40
- System.out.println("Transaction Inputs to small: " + getInputsValue());
+ System.out.println("Transaction Inputs too small: " + getInputsValue());
41
+ System.out.println("Please enter the amount greater than " + NoobChain.minimumTransaction);
42
return false;
43
}
44
0 commit comments