tx · 5tyDB3oFn79ERehJrFu1mADau2PB3TM2vPy1v7kiphtU

3MxN6Cszfki941gTcEwXc8ngmbWPTsHoJFq:  -0.01400000 Waves

2019.06.21 23:23 [552254] smart account 3MxN6Cszfki941gTcEwXc8ngmbWPTsHoJFq > SELF 0.00000000 Waves

{ "type": 13, "id": "5tyDB3oFn79ERehJrFu1mADau2PB3TM2vPy1v7kiphtU", "fee": 1400000, "feeAssetId": null, "timestamp": 1561148674349, "version": 1, "sender": "3MxN6Cszfki941gTcEwXc8ngmbWPTsHoJFq", "senderPublicKey": "4fygXNNAjU52sT9N6uq4o9Ck8G75e94ukktN3pd4VxVo", "proofs": [ "28hPtqRfQAmTL4LZVpDXR416wvFxcCgS4vCowAD7aj914JeiKHZWkdgj7puVWLnjNp9uK7WBsGoZggS8WNUjUCiy" ], "script": "base64:AAIDAAAAAAAAAAAAAAAAAAAAAQAAAAFpAQAAAAhwdXJjaGFzZQAAAAAEAAAAA3BtdAkBAAAAB2V4dHJhY3QAAAABCAUAAAABaQAAAAdwYXltZW50AwkBAAAACWlzRGVmaW5lZAAAAAEIBQAAAANwbXQAAAAHYXNzZXRJZAkAAAIAAAABAgAAACBDYW4gdXNlIFdhdmVzIG9ubHkgYXQgdGhlIG1vbWVudAQAAAAPY3VzdG9tZXJBZGRyZXNzCQACWAAAAAEICAUAAAABaQAAAAZjYWxsZXIAAAAFYnl0ZXMEAAAABXByaWNlBAAAAAckbWF0Y2gwCQAEGgAAAAIFAAAABHRoaXMCAAAAE2l0ZW1fQV9jb3Vwb25fcHJpY2UDCQAAAQAAAAIFAAAAByRtYXRjaDACAAAAA0ludAQAAAABYQUAAAAHJG1hdGNoMAUAAAABYQAAAAAAAAAAAAMJAABmAAAAAgUAAAAFcHJpY2UIBQAAAANwbXQAAAAGYW1vdW50CQAAAgAAAAECAAAAL3B1cmNoYXNlIGFtb3VudCBjYW5ub3QgYmUgbGVzcyB0aGFuIGl0ZW0gcHJpY2UgAwkAAGYAAAACCAUAAAADcG10AAAABmFtb3VudAUAAAAFcHJpY2UJAAACAAAAAQIAAAAwcHVyY2hhc2UgYW1vdW50IGNhbm5vdCBiZSBoaWdoZXIgdGhhbiBpdGVtIHByaWNlCQEAAAAIV3JpdGVTZXQAAAABCQAETAAAAAIJAQAAAAlEYXRhRW50cnkAAAACCQABLAAAAAICAAAAIHN0YXR1czpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAA9jdXN0b21lckFkZHJlc3MCAAAACWNvbmZpcm1lZAkABEwAAAACCQEAAAAJRGF0YUVudHJ5AAAAAgkAASwAAAACAgAAAB9wcmljZTpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAA9jdXN0b21lckFkZHJlc3MFAAAABXByaWNlBQAAAANuaWwAAAAAg6BBzA==", "chainId": 84, "height": 552254, "spentComplexity": 0 } View: original | compacted Prev: DUS8esYww56meQx4Q2Y8EpHccxFCp8AeQntJBUSH2PkF Next: 9jBTDMWn9QrnHWRiEjsutEWoffNHAJZYStpUHyF5e9Qr Diff:
OldNewDifferences
77 func purchase () = {
88 let pmt = extract(i.payment)
99 if (isDefined(pmt.assetId))
10- then throw("Can only use Waves for now")
10+ then throw("Can use Waves only at the moment")
1111 else {
12- let customerad = toBase58String(i.caller.bytes)
13- let price = match getInteger(this, "item_A_price") {
12+ let customerAddress = toBase58String(i.caller.bytes)
13+ let price = match getInteger(this, "item_A_coupon_price") {
1414 case a: Int =>
1515 a
1616 case _ =>
1717 0
1818 }
1919 if ((price > pmt.amount))
20- then throw("Please send correct price")
20+ then throw("purchase amount cannot be less than item price ")
2121 else if ((pmt.amount > price))
22- then throw("Amount cannot be greater than price")
23- else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerad), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerad), price)])
22+ then throw("purchase amount cannot be higher than item price")
23+ else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerAddress), price)])
2424 }
2525 }
2626
Full:
OldNewDifferences
11 {-# STDLIB_VERSION 3 #-}
22 {-# SCRIPT_TYPE ACCOUNT #-}
33 {-# CONTENT_TYPE DAPP #-}
44
55
66 @Callable(i)
77 func purchase () = {
88 let pmt = extract(i.payment)
99 if (isDefined(pmt.assetId))
10- then throw("Can only use Waves for now")
10+ then throw("Can use Waves only at the moment")
1111 else {
12- let customerad = toBase58String(i.caller.bytes)
13- let price = match getInteger(this, "item_A_price") {
12+ let customerAddress = toBase58String(i.caller.bytes)
13+ let price = match getInteger(this, "item_A_coupon_price") {
1414 case a: Int =>
1515 a
1616 case _ =>
1717 0
1818 }
1919 if ((price > pmt.amount))
20- then throw("Please send correct price")
20+ then throw("purchase amount cannot be less than item price ")
2121 else if ((pmt.amount > price))
22- then throw("Amount cannot be greater than price")
23- else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerad), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerad), price)])
22+ then throw("purchase amount cannot be higher than item price")
23+ else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerAddress), price)])
2424 }
2525 }
2626
2727

github/deemru/w8io/169f3d6 
41.31 ms