Skip to content

Commit

Permalink
Merge pull request #116 from orchardstreet/patch-1
Browse files Browse the repository at this point in the history
Make clear what cli.cpp does, correct grammar
  • Loading branch information
J-Ttt authored Apr 12, 2023
2 parents 1cf2f9d + 6bd9f2c commit fc837f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tools/cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ int main(int argc, char** argv) {
PublicKey publicKey = stringToPublicKey(keys["publicKey"]);
PrivateKey privateKey = stringToPrivateKey(keys["privateKey"]);

cout<<"Enter to user wallet:"<<endl;
cout<<"Enter a destination wallet address to send PDN to:"<<endl;
string to;
cin>> to;
PublicWalletAddress toWallet = stringToWalletAddress(to);
Expand All @@ -43,7 +43,7 @@ int main(int argc, char** argv) {
TransactionAmount amount;
cin>>amount;

cout<<"Enter the mining fee (or 0):"<<endl;
cout<<"Enter the mining fee in leaves (or 0):"<<endl;
TransactionAmount fee;
cin>>fee;

Expand All @@ -64,4 +64,4 @@ int main(int argc, char** argv) {
cout<<result<<endl;
cout<<"Finished."<<endl;
return 0;
}
}

0 comments on commit fc837f4

Please sign in to comment.