Skip to content

Commit 5ae5d93

Browse files
authored
Merge pull request libbitcoin#1089 from remcoros/fix/is_recent
fix: is_recent should call is_current_chain
2 parents abbfc25 + b8ec020 commit 5ae5d93

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/full_node.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ bool full_node::is_recent() const NOEXCEPT
435435
(query_.get_top_confirmed() >= config_.node.maximum_height))
436436
return true;
437437

438-
return is_current_time(true);
438+
return is_current_chain(true);
439439
}
440440

441441
// Methods.

0 commit comments

Comments
 (0)