-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add eip1559 attributes to block and transaction * remove test from EthBlockTest * gradle spotlessJavaApply * adding accessList attribute * resolve conflict1 * spotlessJava * remove exit and desktop.ini files * update imports * update imports
- Loading branch information
1 parent
f80c64f
commit 08ae98e
Showing
5 changed files
with
152 additions
and
10 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
core/src/main/java/org/web3j/protocol/core/methods/response/AccessListObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Copyright 2021 Web3 Labs Ltd. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
*/ | ||
package org.web3j.protocol.core.methods.response; | ||
|
||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
public class AccessListObject { | ||
private String address; | ||
private List<String> storageKeys; | ||
|
||
public AccessListObject() {} | ||
|
||
public AccessListObject(String address, List<String> storageKeys) { | ||
this.address = address; | ||
this.storageKeys = storageKeys; | ||
} | ||
|
||
public String getAddress() { | ||
return address; | ||
} | ||
|
||
public void setAddress(String address) { | ||
this.address = address; | ||
} | ||
|
||
public List<String> getStorageKeys() { | ||
return storageKeys; | ||
} | ||
|
||
public void setStorageKeys(List<String> storageKeys) { | ||
this.storageKeys = storageKeys; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) return true; | ||
if (o == null || getClass() != o.getClass()) return false; | ||
AccessListObject that = (AccessListObject) o; | ||
return Objects.equals(getAddress(), that.getAddress()) | ||
&& Objects.equals(getStorageKeys(), that.getStorageKeys()); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(getAddress(), getStorageKeys()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters