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 b = extract(a.payment)
99 if (isDefined(b.assetId))
10- then throw("Can only use Waves for now")
10+ then throw("Can use Waves only at the moment")
1111 else {
1212 let c = toBase58String(a.caller.bytes)
1313 let d = {
14- let e = getInteger(this, "item_A_price")
14+ let e = getInteger(this, "item_A_coupon_price")
1515 if ($isInstanceOf(e, "Int"))
1616 then {
1717 let f = e
2020 else 0
2121 }
2222 if ((d > b.amount))
23- then throw("Please send correct price")
23+ then throw("purchase amount cannot be less than item price ")
2424 else if ((b.amount > d))
25- then throw("Amount cannot be greater than price")
25+ then throw("purchase amount cannot be higher than item price")
2626 else WriteSet([DataEntry(("status:purchase_item_A_customer_" + c), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + c), d)])
2727 }
2828 }
Full:
OldNewDifferences
11 {-# STDLIB_VERSION 3 #-}
22 {-# SCRIPT_TYPE ACCOUNT #-}
33 {-# CONTENT_TYPE DAPP #-}
44
55
66 @Callable(a)
77 func purchase () = {
88 let b = extract(a.payment)
99 if (isDefined(b.assetId))
10- then throw("Can only use Waves for now")
10+ then throw("Can use Waves only at the moment")
1111 else {
1212 let c = toBase58String(a.caller.bytes)
1313 let d = {
14- let e = getInteger(this, "item_A_price")
14+ let e = getInteger(this, "item_A_coupon_price")
1515 if ($isInstanceOf(e, "Int"))
1616 then {
1717 let f = e
1818 f
1919 }
2020 else 0
2121 }
2222 if ((d > b.amount))
23- then throw("Please send correct price")
23+ then throw("purchase amount cannot be less than item price ")
2424 else if ((b.amount > d))
25- then throw("Amount cannot be greater than price")
25+ then throw("purchase amount cannot be higher than item price")
2626 else WriteSet([DataEntry(("status:purchase_item_A_customer_" + c), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + c), d)])
2727 }
2828 }
2929
3030

github/deemru/w8io/169f3d6 
23.66 ms