BlockWithReceipts.java
/*
* Copyright ConsenSys AG.
*
* 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.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.besu.ethereum.core;
import org.hyperledger.besu.datatypes.Hash;
import java.util.List;
import java.util.Objects;
import com.google.common.base.MoreObjects;
public class BlockWithReceipts {
private final Block block;
private final List<TransactionReceipt> receipts;
public BlockWithReceipts(final Block block, final List<TransactionReceipt> receipts) {
this.block = block;
this.receipts = receipts;
}
public BlockHeader getHeader() {
return block.getHeader();
}
public Block getBlock() {
return block;
}
public List<TransactionReceipt> getReceipts() {
return receipts;
}
public long getNumber() {
return block.getHeader().getNumber();
}
public Hash getHash() {
return block.getHash();
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final BlockWithReceipts that = (BlockWithReceipts) o;
return Objects.equals(block, that.block) && Objects.equals(receipts, that.receipts);
}
@Override
public int hashCode() {
return Objects.hash(block, receipts);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("block", block)
.add("receipts", receipts)
.toString();
}
}