@@ -44,7 +44,7 @@ public class Transaction {
44
44
private String maxPriorityFeePerGas ;
45
45
private List <AccessListObject > accessList ;
46
46
private String maxFeePerBlobGas ;
47
- private List <String > versionedHashes ;
47
+ private List <String > blobVersionedHashes ;
48
48
49
49
public Transaction () {}
50
50
@@ -194,7 +194,7 @@ public Transaction(
194
194
this .maxPriorityFeePerGas = maxPriorityFeePerGas ;
195
195
this .accessList = accessList ;
196
196
this .maxFeePerBlobGas = maxFeePerBlobGas ;
197
- this .versionedHashes = versionedHashes ;
197
+ this .blobVersionedHashes = versionedHashes ;
198
198
}
199
199
200
200
public void setChainId (String chainId ) {
@@ -449,12 +449,12 @@ public void setMaxFeePerBlobGas(String maxFeePerBlobGas) {
449
449
this .maxFeePerBlobGas = maxFeePerBlobGas ;
450
450
}
451
451
452
- public List <String > getVersionedHashes () {
453
- return versionedHashes ;
452
+ public List <String > getBlobVersionedHashes () {
453
+ return blobVersionedHashes ;
454
454
}
455
455
456
- public void setVersionedHashes (List <String > versionedHashes ) {
457
- this .versionedHashes = versionedHashes ;
456
+ public void setBlobVersionedHashes (List <String > blobVersionedHashes ) {
457
+ this .blobVersionedHashes = blobVersionedHashes ;
458
458
}
459
459
460
460
@ Override
@@ -565,9 +565,9 @@ public boolean equals(Object o) {
565
565
: that .getMaxFeePerBlobGasRaw () != null ) {
566
566
return false ;
567
567
}
568
- if (getVersionedHashes () != null
569
- ? !getVersionedHashes ().equals (that .getVersionedHashes ())
570
- : that .getVersionedHashes () != null ) {
568
+ if (getBlobVersionedHashes () != null
569
+ ? !getBlobVersionedHashes ().equals (that .getBlobVersionedHashes ())
570
+ : that .getBlobVersionedHashes () != null ) {
571
571
return false ;
572
572
}
573
573
if (getAccessList () != null
@@ -615,7 +615,7 @@ public int hashCode() {
615
615
+ (getMaxFeePerBlobGasRaw () != null
616
616
? getMaxFeePerBlobGasRaw ().hashCode ()
617
617
: 0 );
618
- result = 31 * result + (getVersionedHashes () != null ? getVersionedHashes ().hashCode () : 0 );
618
+ result = 31 * result + (getBlobVersionedHashes () != null ? getBlobVersionedHashes ().hashCode () : 0 );
619
619
result = 31 * result + (getAccessList () != null ? getAccessList ().hashCode () : 0 );
620
620
return result ;
621
621
}
0 commit comments