@@ -2026,7 +2026,7 @@ func (bigtable *Bigtable) GetAddressTransactionsTableData(address []byte, pageTo
2026
2026
method := bigtable .GetMethodLabel (t .MethodId , t .InvokesContract )
2027
2027
2028
2028
tableData [i ] = []interface {}{
2029
- utils .FormatTransactionHash (t .Hash ),
2029
+ utils .FormatTransactionHash (t .Hash , t . ErrorMsg == "" ),
2030
2030
utils .FormatMethod (method ),
2031
2031
utils .FormatBlockNumber (t .BlockNumber ),
2032
2032
utils .FormatTimestamp (t .Time .AsTime ().Unix ()),
@@ -2329,7 +2329,7 @@ func (bigtable *Bigtable) GetAddressBlobTableData(address []byte, pageToken stri
2329
2329
toName := names [string (t .To )]
2330
2330
2331
2331
tableData [i ] = []interface {}{
2332
- utils .FormatTransactionHash (t .Hash ),
2332
+ utils .FormatTransactionHash (t .Hash , t . ErrorMsg == "" ),
2333
2333
utils .FormatBlockNumber (t .BlockNumber ),
2334
2334
utils .FormatTimestamp (t .Time .AsTime ().Unix ()),
2335
2335
utils .FormatAddressWithLimitsInAddressPageTable (address , t .From , fromName , false , digitLimitInAddressPagesTable , nameLimitInAddressPagesTable , true ),
@@ -2448,7 +2448,7 @@ func (bigtable *Bigtable) GetAddressInternalTableData(address []byte, pageToken
2448
2448
toName := names [string (t .To )]
2449
2449
2450
2450
tableData [i ] = []interface {}{
2451
- utils .FormatTransactionHash (t .ParentHash ),
2451
+ utils .FormatTransactionHash (t .ParentHash , true ),
2452
2452
utils .FormatBlockNumber (t .BlockNumber ),
2453
2453
utils .FormatTimestamp (t .Time .AsTime ().Unix ()),
2454
2454
utils .FormatAddressWithLimitsInAddressPageTable (address , t .From , fromName , false , digitLimitInAddressPagesTable , nameLimitInAddressPagesTable , true ),
@@ -2771,7 +2771,7 @@ func (bigtable *Bigtable) GetAddressErc20TableData(address []byte, pageToken str
2771
2771
}
2772
2772
2773
2773
tableData [i ] = []interface {}{
2774
- utils .FormatTransactionHash (t .ParentHash ),
2774
+ utils .FormatTransactionHash (t .ParentHash , true ),
2775
2775
utils .FormatBlockNumber (t .BlockNumber ),
2776
2776
utils .FormatTimestamp (t .Time .AsTime ().Unix ()),
2777
2777
utils .FormatAddressWithLimitsInAddressPageTable (address , t .From , fromName , false , digitLimitInAddressPagesTable , nameLimitInAddressPagesTable , true ),
@@ -2886,7 +2886,7 @@ func (bigtable *Bigtable) GetAddressErc721TableData(address []byte, pageToken st
2886
2886
toName := names [string (t .To )]
2887
2887
2888
2888
tableData [i ] = []interface {}{
2889
- utils .FormatTransactionHash (t .ParentHash ),
2889
+ utils .FormatTransactionHash (t .ParentHash , true ),
2890
2890
utils .FormatBlockNumber (t .BlockNumber ),
2891
2891
utils .FormatTimestamp (t .Time .AsTime ().Unix ()),
2892
2892
utils .FormatAddressWithLimitsInAddressPageTable (address , t .From , fromName , false , digitLimitInAddressPagesTable , nameLimitInAddressPagesTable , true ),
@@ -2997,7 +2997,7 @@ func (bigtable *Bigtable) GetAddressErc1155TableData(address []byte, pageToken s
2997
2997
toName := names [string (t .To )]
2998
2998
2999
2999
tableData [i ] = []interface {}{
3000
- utils .FormatTransactionHash (t .ParentHash ),
3000
+ utils .FormatTransactionHash (t .ParentHash , true ),
3001
3001
utils .FormatBlockNumber (t .BlockNumber ),
3002
3002
utils .FormatTimestamp (t .Time .AsTime ().Unix ()),
3003
3003
utils .FormatAddressWithLimitsInAddressPageTable (address , t .From , fromName , false , digitLimitInAddressPagesTable , nameLimitInAddressPagesTable , true ),
@@ -3839,7 +3839,7 @@ func (bigtable *Bigtable) GetTokenTransactionsTableData(token []byte, address []
3839
3839
}
3840
3840
3841
3841
tableData [i ] = []interface {}{
3842
- utils .FormatTransactionHash (t .ParentHash ),
3842
+ utils .FormatTransactionHash (t .ParentHash , true ),
3843
3843
utils .FormatTimestamp (t .Time .AsTime ().Unix ()),
3844
3844
from ,
3845
3845
utils .FormatInOutSelf (address , t .From , t .To ),
0 commit comments