tx · AJE7pPuY2ckjqotwT813VL3uNfqvuETZKZc5fYoCBn6v
3N7eEzkCtBoWaNRe4ZuTPrChbnjBLKDb9Bx: -0.01000000 Waves
2023.05.24 17:20 [2592174] smart account 3N7eEzkCtBoWaNRe4ZuTPrChbnjBLKDb9Bx > SELF 0.00000000 Waves
{
"type": 13,
"id": "AJE7pPuY2ckjqotwT813VL3uNfqvuETZKZc5fYoCBn6v",
"fee": 1000000,
"feeAssetId": null,
"timestamp": 1684938031239,
"version": 2,
"chainId": 84,
"sender": "3N7eEzkCtBoWaNRe4ZuTPrChbnjBLKDb9Bx",
"senderPublicKey": "2NK7BrUZMvnHzAoHnJfz3FuDBP5zYUNoxshB49AH2kbc",
"proofs": [
"4y16eweS3q6PoCEMHxUTxy3WiZm64652cbpP7MJS8EhWiDt6FMrgm1H4Rdi7eX1cjDqYxYwEcMkbxLHScpdaZTM5"
],
"script": "base64:BgIICAISBAoCAQEAAQFpAQNmb28CAWEJaXRlcmF0aW9uBANyZXMJAP0HBAUEdGhpcwIDZm9vCQDMCAIFAWEFA25pbAUDbmlsAwkAAAIFA3JlcwUDcmVzAwkAZgIFCWl0ZXJhdGlvbgUBYQkAlAoCBQNuaWwFA3JlcwkAzAgCCQEMSW50ZWdlckVudHJ5AgIEY2FsbAUBYQUDbmlsCQACAQIkU3RyaWN0IHZhbHVlIGlzIG5vdCBlcXVhbCB0byBpdHNlbGYuAGJoL1E=",
"height": 2592174,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: EiVKPKVFmcTfz5zzxvFuXYij1Nnx5TkuhryrS2uZv4BR
Next: 9xDFxoVkK39UuY7wMWXYLjNUXWdadgmbzsSxd7SbtrXt
Diff:
Old | New | | Differences |
---|
4 | 4 | | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(a) |
---|
7 | | - | func foo (b,c,d) = { |
---|
8 | | - | let e = reentrantInvoke(this, "foo", [c], nil) |
---|
9 | | - | if ((e == e)) |
---|
10 | | - | then if ((d > c)) |
---|
11 | | - | then $Tuple2(nil, e) |
---|
12 | | - | else [IntegerEntry("call", c)] |
---|
| 7 | + | func foo (b,c) = { |
---|
| 8 | + | let d = reentrantInvoke(this, "foo", [b], nil) |
---|
| 9 | + | if ((d == d)) |
---|
| 10 | + | then if ((c > b)) |
---|
| 11 | + | then $Tuple2(nil, d) |
---|
| 12 | + | else [IntegerEntry("call", b)] |
---|
13 | 13 | | else throw("Strict value is not equal to itself.") |
---|
14 | 14 | | } |
---|
15 | 15 | | |
---|
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 6 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | 4 | | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(a) |
---|
7 | | - | func foo (b,c,d) = { |
---|
8 | | - | let e = reentrantInvoke(this, "foo", [c], nil) |
---|
9 | | - | if ((e == e)) |
---|
10 | | - | then if ((d > c)) |
---|
11 | | - | then $Tuple2(nil, e) |
---|
12 | | - | else [IntegerEntry("call", c)] |
---|
| 7 | + | func foo (b,c) = { |
---|
| 8 | + | let d = reentrantInvoke(this, "foo", [b], nil) |
---|
| 9 | + | if ((d == d)) |
---|
| 10 | + | then if ((c > b)) |
---|
| 11 | + | then $Tuple2(nil, d) |
---|
| 12 | + | else [IntegerEntry("call", b)] |
---|
13 | 13 | | else throw("Strict value is not equal to itself.") |
---|
14 | 14 | | } |
---|
15 | 15 | | |
---|
16 | 16 | | |
---|