Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. //Example transaction data
  2. var trx1 = new Transaction()
  3. {
  4. Sender = "Ricard",
  5. Recipient = "Frodo",
  6. Amount = 10,
  7. Fee = 0.001
  8. };
  9.  
  10.  
  11. //example transaction data
  12. var trx2 = new Transaction()
  13. {
  14. Sender = "Amir",
  15. Recipient = "Wati",
  16. Amount = 20,
  17. Fee = 0.0001
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement