tx · DvFQGiVPgfE6xagv857GmCjwkTtPCTZBRrLsT2cChS7k 3MxN9yafHqAds69z7NeaYgeXjeDUdzJya1M: -0.01000000 Waves 2023.03.22 07:58 [2500777] smart account 3MxN9yafHqAds69z7NeaYgeXjeDUdzJya1M > SELF 0.00000000 Waves
{ "type": 13, "id": "DvFQGiVPgfE6xagv857GmCjwkTtPCTZBRrLsT2cChS7k", "fee": 1000000, "feeAssetId": null, "timestamp": 1679461166237, "version": 2, "chainId": 84, "sender": "3MxN9yafHqAds69z7NeaYgeXjeDUdzJya1M", "senderPublicKey": "CPR2z4Q8kdV2M4JHaFVVTRzdEWPUA1Whqtw6SWE8kyU9", "proofs": [ "zTAnakG1TbBmGu5eDDS68kudkzU5t8JTmkKyEjxRhm3ckCuDVsuu198tVvcapaT1sJ2TcYqabBkGTVTs8cAttUN" ], "script": "base64:BgILCAISABIFCgMBAREAAgFpAQtleGFtcGxlQ2FsbAAEAXoJAP0HBAUEdGhpcwIRaW50ZXJuYWxSZWN1cnNpb24JAMwIAgAKCQDMCAIAAAkAzAgCBQNuaWwFA25pbAUDbmlsAwkAAAIFAXoFAXoEByRtYXRjaDAFAXoDCQABAgUHJG1hdGNoMAIFKEludCkEBGxpc3QFByRtYXRjaDAJAMwIAgkBDEludGVnZXJFbnRyeQICCEVYRUNVVEVEAAEFA25pbAkAAgECHldyb25nIGludGVybmFsIGZ1bmN0aW9uIHJlc3VsdAkAAgECJFN0cmljdCB2YWx1ZSBpcyBub3QgZXF1YWwgdG8gaXRzZWxmLgFpARFpbnRlcm5hbFJlY3Vyc2lvbgMNbWF4SXRlcmF0aW9ucxBjdXJyZW50SXRlcmF0aW9uEWFjY3VtdWxhdGVkUmVzdWx0AwkBAiE9AggFAWkGY2FsbGVyBQR0aGlzCQACAQIjT25seSBjYW4gYmUgY2FsbGVkIGJ5IHRoaXMgY29udHJhY3QDCQBmAgUNbWF4SXRlcmF0aW9ucwUQY3VycmVudEl0ZXJhdGlvbgQBegkA/QcEBQR0aGlzAhFpbnRlcm5hbFJlY3Vyc2lvbgkAzAgCBQ1tYXhJdGVyYXRpb25zCQDMCAIJAGQCBRBjdXJyZW50SXRlcmF0aW9uAAEJAMwIAgkAzQgCBRFhY2N1bXVsYXRlZFJlc3VsdAUQY3VycmVudEl0ZXJhdGlvbgUDbmlsBQNuaWwDCQAAAgUBegUBegkAzAgCCQEMSW50ZWdlckVudHJ5AgkArAICAhNjdXJyZW50X2l0ZXJhdGlvbl9fCQCkAwEFEGN1cnJlbnRJdGVyYXRpb24FEGN1cnJlbnRJdGVyYXRpb24FA25pbAkAAgECJFN0cmljdCB2YWx1ZSBpcyBub3QgZXF1YWwgdG8gaXRzZWxmLgkAlAoCBQNuaWwAKAECdHgBBnZlcmlmeQAJAPQDAwgFAnR4CWJvZHlCeXRlcwkAkQMCCAUCdHgGcHJvb2ZzAAAIBQJ0eA9zZW5kZXJQdWJsaWNLZXltzhZV", "height": 2500777, "applicationStatus": "succeeded", "spentComplexity": 0 } View: original | compacted Prev: GrYa3CKUgQnveMsuV3qVV1uqcE9adTZna8wGHqSVGGpZ Next: DB8gh5DKXcbp9H1ypL2cZ7SvXVGfsQffd8c7EXyE1UW9 Diff:
Old | New | Differences | |
---|---|---|---|
8 | 8 | let z = reentrantInvoke(this, "internalRecursion", [10, 0, nil], nil) | |
9 | 9 | if ((z == z)) | |
10 | 10 | then match z { | |
11 | - | case list: Int => | |
12 | - | [IntegerEntry("EXECUTED", | |
11 | + | case list: (Int) => | |
12 | + | [IntegerEntry("EXECUTED", 1)] | |
13 | 13 | case _ => | |
14 | 14 | throw("Wrong internal function result") | |
15 | 15 | } |
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 exampleCall () = { | |
8 | 8 | let z = reentrantInvoke(this, "internalRecursion", [10, 0, nil], nil) | |
9 | 9 | if ((z == z)) | |
10 | 10 | then match z { | |
11 | - | case list: Int => | |
12 | - | [IntegerEntry("EXECUTED", | |
11 | + | case list: (Int) => | |
12 | + | [IntegerEntry("EXECUTED", 1)] | |
13 | 13 | case _ => | |
14 | 14 | throw("Wrong internal function result") | |
15 | 15 | } | |
16 | 16 | else throw("Strict value is not equal to itself.") | |
17 | 17 | } | |
18 | 18 | ||
19 | 19 | ||
20 | 20 | ||
21 | 21 | @Callable(i) | |
22 | 22 | func internalRecursion (maxIterations,currentIteration,accumulatedResult) = if ((i.caller != this)) | |
23 | 23 | then throw("Only can be called by this contract") | |
24 | 24 | else if ((maxIterations > currentIteration)) | |
25 | 25 | then { | |
26 | 26 | let z = reentrantInvoke(this, "internalRecursion", [maxIterations, (currentIteration + 1), (accumulatedResult :+ currentIteration)], nil) | |
27 | 27 | if ((z == z)) | |
28 | 28 | then [IntegerEntry(("current_iteration__" + toString(currentIteration)), currentIteration)] | |
29 | 29 | else throw("Strict value is not equal to itself.") | |
30 | 30 | } | |
31 | 31 | else $Tuple2(nil, 40) | |
32 | 32 | ||
33 | 33 | ||
34 | 34 | @Verifier(tx) | |
35 | 35 | func verify () = sigVerify(tx.bodyBytes, tx.proofs[0], tx.senderPublicKey) | |
36 | 36 |
github/deemru/w8io/169f3d6 28.11 ms ◑