Skip to content

Commit 0e47620

Browse files
authored
Merge pull request #6 from neal0892/patch-5
Fixed a typo and added information line
2 parents 3383bf5 + e73ff6a commit 0e47620

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/noobchain/Transaction.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ public boolean processTransaction() {
3737

3838
//Checks if transaction is valid:
3939
if(getInputsValue() < NoobChain.minimumTransaction) {
40-
System.out.println("Transaction Inputs to small: " + getInputsValue());
40+
System.out.println("Transaction Inputs too small: " + getInputsValue());
41+
System.out.println("Please enter the amount greater than " + NoobChain.minimumTransaction);
4142
return false;
4243
}
4344

0 commit comments

Comments
 (0)