tx · J2fTNr5LcXEGcvGQx7E1FL5HEMgQ3xXZfg4KyvoqisoP
3N7eEzkCtBoWaNRe4ZuTPrChbnjBLKDb9Bx: -0.01000000 Waves
2023.05.27 17:36 [2596494] smart account 3N7eEzkCtBoWaNRe4ZuTPrChbnjBLKDb9Bx > SELF 0.00000000 Waves
{
"type": 13,
"id": "J2fTNr5LcXEGcvGQx7E1FL5HEMgQ3xXZfg4KyvoqisoP",
"fee": 1000000,
"feeAssetId": null,
"timestamp": 1685198183304,
"version": 2,
"chainId": 84,
"sender": "3N7eEzkCtBoWaNRe4ZuTPrChbnjBLKDb9Bx",
"senderPublicKey": "2NK7BrUZMvnHzAoHnJfz3FuDBP5zYUNoxshB49AH2kbc",
"proofs": [
"3ne2gZopFiymbZZWopbjnNUex2yUhhHiBeLUB9Yubn5nbZry2PeUYyqJtSHygCHKxH4JpRiFXHf29hgfCDD2y8w8"
],
"script": "base64:BgIHCAISAwoBAQABAWkBA2ZvbwEJaXRlcmF0aW9uAwkAZgIFCWl0ZXJhdGlvbgAABANyZXMJAP0HBAUEdGhpcwIDZm9vCQDMCAIJAGUCBQlpdGVyYXRpb24AAQUDbmlsBQNuaWwDCQAAAgUDcmVzBQNyZXMJAMwIAgkBDEludGVnZXJFbnRyeQICBXZhbHVlBQlpdGVyYXRpb24FA25pbAkAAgECJFN0cmljdCB2YWx1ZSBpcyBub3QgZXF1YWwgdG8gaXRzZWxmLgUDbmlsALRQqQo=",
"height": 2596494,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: 7r7DkYTUqSUTYyMvn1PCGhodzrw95gDAZN8JEK5z4Rjz
Next: E42CmHak6pQ53PTAtt1uLXrNPfu8nMMe7amDSmjhPXU4
Diff:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 6 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | | - | let iteration = valueOrErrorMessage(getInteger(this, "usersCounter"), "Range store read error") |
---|
| 4 | + | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(i) |
---|
7 | 7 | | func foo (iteration) = if ((iteration > 0)) |
---|
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 6 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | | - | let iteration = valueOrErrorMessage(getInteger(this, "usersCounter"), "Range store read error") |
---|
| 4 | + | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(i) |
---|
7 | 7 | | func foo (iteration) = if ((iteration > 0)) |
---|
8 | 8 | | then { |
---|
9 | 9 | | let res = reentrantInvoke(this, "foo", [(iteration - 1)], nil) |
---|
10 | 10 | | if ((res == res)) |
---|
11 | 11 | | then [IntegerEntry("value", iteration)] |
---|
12 | 12 | | else throw("Strict value is not equal to itself.") |
---|
13 | 13 | | } |
---|
14 | 14 | | else nil |
---|
15 | 15 | | |
---|
16 | 16 | | |
---|