Home
last modified time | relevance | path

Searched refs:checktxtime (Results 1 – 13 of 13) sorted by relevance

/dports/net-p2p/zetacoin-utils/zetacoin-0.13.2.1/src/rpc/
H A Dmining.cpp478 boost::system_time checktxtime; in getblocktemplate() local
499 checktxtime = boost::get_system_time() + boost::posix_time::minutes(1); in getblocktemplate()
504 if (!cvBlockChange.timed_wait(lock, checktxtime)) in getblocktemplate()
509 checktxtime += boost::posix_time::seconds(10); in getblocktemplate()
/dports/net-p2p/zetacoin/zetacoin-0.13.2.1/src/rpc/
H A Dmining.cpp478 boost::system_time checktxtime; in getblocktemplate() local
499 checktxtime = boost::get_system_time() + boost::posix_time::minutes(1); in getblocktemplate()
504 if (!cvBlockChange.timed_wait(lock, checktxtime)) in getblocktemplate()
509 checktxtime += boost::posix_time::seconds(10); in getblocktemplate()
/dports/net-p2p/zetacoin-daemon/zetacoin-0.13.2.1/src/rpc/
H A Dmining.cpp478 boost::system_time checktxtime; in getblocktemplate() local
499 checktxtime = boost::get_system_time() + boost::posix_time::minutes(1); in getblocktemplate()
504 if (!cvBlockChange.timed_wait(lock, checktxtime)) in getblocktemplate()
509 checktxtime += boost::posix_time::seconds(10); in getblocktemplate()
/dports/net-p2p/litecoin-daemon/litecoin-0.18.1/src/rpc/
H A Dmining.cpp458 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
479 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
484 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
489 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/litecoin/litecoin-0.18.1/src/rpc/
H A Dmining.cpp458 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
479 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
484 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
489 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/litecoin-utils/litecoin-0.18.1/src/rpc/
H A Dmining.cpp458 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
479 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
484 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
489 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/namecoin-daemon/namecoin-core-nc0.21.0.1/src/rpc/
H A Dmining.cpp679 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
700 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
705 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
711 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/rpc/
H A Dmining.cpp637 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
658 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
663 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
669 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/namecoin/namecoin-core-nc0.21.0.1/src/rpc/
H A Dmining.cpp679 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
700 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
705 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
711 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/namecoin-utils/namecoin-core-nc0.21.0.1/src/rpc/
H A Dmining.cpp679 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
700 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
705 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
711 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/rpc/
H A Dmining.cpp691 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
712 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
717 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
723 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/bitcoin/bitcoin-22.0/src/rpc/
H A Dmining.cpp691 std::chrono::steady_clock::time_point checktxtime; in getblocktemplate() local
712 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1); in getblocktemplate()
717 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout) in getblocktemplate()
723 checktxtime += std::chrono::seconds(10); in getblocktemplate()
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/rpc/
H A Dmining.cpp691 std::chrono::steady_clock::time_point checktxtime;
712 checktxtime = std::chrono::steady_clock::now() + std::chrono::minutes(1);
717 if (g_best_block_cv.wait_until(lock, checktxtime) == std::cv_status::timeout)
723 checktxtime += std::chrono::seconds(10);