mirror of https://github.com/hyperledger/besu
Remove Ibft's InRoundPayload interface (#423)
An abstraction existed which allowed for the differentiation of IBFT messages which were used 'in-round' (Proposal, Prepare, Commit) and those that were inter-round (RoundChange, NewRound). This abstraction has not proven useful now that actual capability has been developed, and as such is being removed.
parent
5bdf698b72
commit
698e7823d5
@ -1,19 +0,0 @@ |
||||
/* |
||||
* Copyright 2018 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. |
||||
*/ |
||||
package tech.pegasys.pantheon.consensus.ibft.ibftmessagedata; |
||||
|
||||
import tech.pegasys.pantheon.consensus.ibft.ConsensusRoundIdentifier; |
||||
|
||||
public interface InRoundPayload extends Payload { |
||||
ConsensusRoundIdentifier getRoundIdentifier(); |
||||
} |
Loading…
Reference in new issue