File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
src/Packages/Passport/Runtime/Scripts/Private/Model/Response Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -414,7 +414,6 @@ public async void GetZkTransactionReceiptStatus()
414
414
415
415
TransactionReceiptResponse response = await passport . ZkEvmGetTransactionReceipt ( ZkGetTransactionReceiptHash . text ) ;
416
416
string status = "Transaction receipt status: " ;
417
- ShowOutput ( $ "Transaction receipt status: { ( response . status == "0x1" ? "Success" : "Failed" ) } ") ;
418
417
switch ( response . status )
419
418
{
420
419
case "0x1" :
Original file line number Diff line number Diff line change @@ -24,15 +24,11 @@ public class TransactionReceiptResponse
24
24
/// Possible reponses:
25
25
/// <list type="bullet">
26
26
/// <item>
27
- /// <description>Success: 0x0 </description>
27
+ /// <description>Success: 0x1 </description>
28
28
/// </item>
29
29
/// <item>
30
30
/// <description>Failure: 0x0</description>
31
31
/// </item>
32
- /// <item>
33
- /// <description>Null: Transaction is still processing</description>
34
- /// </item>
35
- /// </list>
36
32
/// </summary>
37
33
public string status ;
38
34
You can’t perform that action at this time.
0 commit comments