Fixed merge conflict fail.

This commit is contained in:
Luke Anderson 2019-03-29 00:02:41 +11:00
parent 367fbbc1c5
commit 6c8abd8990
No known key found for this signature in database
GPG Key ID: 44408169EC61E228

View File

@ -51,11 +51,7 @@ impl<U: BeaconNode> DutiesManager<U> {
///
/// be a wall-clock (e.g., system time, remote server time, etc.).
fn update(&self, epoch: Epoch) -> Result<UpdateOutcome, Error> {
<<<<<<< HEAD
let duties = self.beacon_node.request_duties(epoch, &self.signers)?;
=======
let duties = self.beacon_node.request_duties(epoch, &self.pubkeys)?;
>>>>>>> master
{
// If these duties were known, check to see if they're updates or identical.
if let Some(known_duties) = self.duties_map.read()?.get(&epoch) {