tx · 3LVb4yzL3JtEwvxhMyg62Lk813bUEfV7o37DZZCRj2dx
3Mv8ZCtmGt2mkm6YZzg2pBcYJEoRNZkJiZe: -0.01000000 Waves
2023.01.13 12:05 [2402973] smart account 3Mv8ZCtmGt2mkm6YZzg2pBcYJEoRNZkJiZe > SELF 0.00000000 Waves
{
"type": 13,
"id": "3LVb4yzL3JtEwvxhMyg62Lk813bUEfV7o37DZZCRj2dx",
"fee": 1000000,
"feeAssetId": null,
"timestamp": 1673600725445,
"version": 2,
"chainId": 84,
"sender": "3Mv8ZCtmGt2mkm6YZzg2pBcYJEoRNZkJiZe",
"senderPublicKey": "HZCdWFmN7ku5dEQkeiHsP2k2BkNDCck5pcq6g7FLCZXq",
"proofs": [
"21RqNYCi1yTqRFcEDhHrnsYrjBoYydtAuDbWYsj13J3YV6PxgbeCwaQeRunZGLDMPCqDLkQa6ThyE4yT5eMiwzpZ"
],
"script": "base64:BgIHCAISAwoBCAABAWkBA2ZvbwEEbmFtZQQBYQYDCQAAAgUBYQUBYQQBYgYDCQAAAgUBYgUBYgQBYwYDCQAAAgUBYwUBYwkAlAoCBQNuaWwFBHVuaXQJAAIBAiRTdHJpY3QgdmFsdWUgaXMgbm90IGVxdWFsIHRvIGl0c2VsZi4JAAIBAiRTdHJpY3QgdmFsdWUgaXMgbm90IGVxdWFsIHRvIGl0c2VsZi4JAAIBAiRTdHJpY3QgdmFsdWUgaXMgbm90IGVxdWFsIHRvIGl0c2VsZi4AhJdzhA==",
"height": 2402973,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: ER8yuxwBhxJYiRRtTnTgperZtvoBYX6zXM2KVaiMLDvB
Next: none
Diff:
Old | New | | Differences |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(i) |
---|
7 | 7 | | func foo (name) = { |
---|
8 | | - | let test = true |
---|
9 | | - | if ((test == test)) |
---|
10 | | - | then $Tuple2(nil, unit) |
---|
| 8 | + | let a = true |
---|
| 9 | + | if ((a == a)) |
---|
| 10 | + | then { |
---|
| 11 | + | let b = true |
---|
| 12 | + | if ((b == b)) |
---|
| 13 | + | then { |
---|
| 14 | + | let c = true |
---|
| 15 | + | if ((c == c)) |
---|
| 16 | + | then $Tuple2(nil, unit) |
---|
| 17 | + | else throw("Strict value is not equal to itself.") |
---|
| 18 | + | } |
---|
| 19 | + | else throw("Strict value is not equal to itself.") |
---|
| 20 | + | } |
---|
11 | 21 | | else throw("Strict value is not equal to itself.") |
---|
12 | 22 | | } |
---|
13 | 23 | | |
---|
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(i) |
---|
7 | 7 | | func foo (name) = { |
---|
8 | | - | let test = true |
---|
9 | | - | if ((test == test)) |
---|
10 | | - | then $Tuple2(nil, unit) |
---|
| 8 | + | let a = true |
---|
| 9 | + | if ((a == a)) |
---|
| 10 | + | then { |
---|
| 11 | + | let b = true |
---|
| 12 | + | if ((b == b)) |
---|
| 13 | + | then { |
---|
| 14 | + | let c = true |
---|
| 15 | + | if ((c == c)) |
---|
| 16 | + | then $Tuple2(nil, unit) |
---|
| 17 | + | else throw("Strict value is not equal to itself.") |
---|
| 18 | + | } |
---|
| 19 | + | else throw("Strict value is not equal to itself.") |
---|
| 20 | + | } |
---|
11 | 21 | | else throw("Strict value is not equal to itself.") |
---|
12 | 22 | | } |
---|
13 | 23 | | |
---|
14 | 24 | | |
---|