Skip to content

Commit 2248d78

Browse files
chore: update transaction hash to hash (#3790)
1 parent b117a84 commit 2248d78

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Source/Immutable/Private/Immutable/ImmutableBlueprintLibrary.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33

44
void UImmutableBlueprintLibrary::BreakFZkEvmTransactionReceiptLog(FZkEvmTransactionReceiptLog Log, FString& Address, FString& Data,
5-
FString& BlockNumber, FString& TransactionHash, FString& TransactionIndex, FString& BlockHash, FString& LogIndex, bool& Removed,
5+
FString& BlockNumber, FString& Hash, FString& TransactionIndex, FString& BlockHash, FString& LogIndex, bool& Removed,
66
TArray<FString>& Topics)
77
{
88
Address = Log.address;
99
Data = Log.data;
1010
BlockNumber = Log.blockNumber;
11-
TransactionHash = Log.transactionHash;
11+
Hash = Log.hash;
1212
TransactionIndex = Log.transactionIndex;
1313
BlockHash = Log.blockHash;
1414
LogIndex = Log.logIndex;

Source/Immutable/Public/Immutable/ImmutableBlueprintLibrary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class IMMUTABLE_API UImmutableBlueprintLibrary : public UBlueprintFunctionLibrar
1414
public:
1515

1616
UFUNCTION(BlueprintPure, Category = "Immutable", meta = (NativeBreakFunc))
17-
static void BreakFZkEvmTransactionReceiptLog(FZkEvmTransactionReceiptLog Log, FString& Address, FString& Data, FString& BlockNumber, FString& TransactionHash, FString& TransactionIndex, FString& BlockHash, FString& LogIndex, bool& Removed, TArray<FString>& Topics);
17+
static void BreakFZkEvmTransactionReceiptLog(FZkEvmTransactionReceiptLog Log, FString& Address, FString& Data, FString& BlockNumber, FString& Hash, FString& TransactionIndex, FString& BlockHash, FString& LogIndex, bool& Removed, TArray<FString>& Topics);
1818

1919
UFUNCTION(BlueprintPure, Category = "Immutable", meta = (NativeBreakFunc))
2020
static void BreakZkEvmTransactionReceipt(FZkEvmTransactionReceipt Receipt, FString& BlockHash, FString& BlockNumber, FString& ContractAddress, FString& CumulativeGasUsed, FString& EffectiveGasPrice, FString& From, FString& GasUsed, FString& LogsBloom, FString& Status, FString& To, FString& TransactionHash, FString& TransactionIndex, FString& Type, TArray<FZkEvmTransactionReceiptLog>& Logs);

Source/Immutable/Public/Immutable/ImmutableDataTypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ struct IMMUTABLE_API FZkEvmTransactionReceiptLog
242242
FString blockNumber;
243243

244244
UPROPERTY()
245-
FString transactionHash;
245+
FString hash;
246246

247247
UPROPERTY()
248248
FString transactionIndex;

0 commit comments

Comments
 (0)