From 14e3e098d58aaec62a6021037cca08181cf11810 Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Fri, 6 Feb 2026 11:57:52 +0000 Subject: [PATCH] change coroutine stack size to 4MB. Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> --- include/xrpl/core/Coro.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xrpl/core/Coro.ipp b/include/xrpl/core/Coro.ipp index e0d88cb21e..70e4681043 100644 --- a/include/xrpl/core/Coro.ipp +++ b/include/xrpl/core/Coro.ipp @@ -27,7 +27,7 @@ JobQueue::Coro::Coro(Coro_create_t, JobQueue& jq, JobType type, std::string cons finished_ = true; #endif }, - boost::coroutines::attributes(megabytes(2))) // 2MB stack (increased from 1MB) + boost::coroutines::attributes(megabytes(4))) // 4MB stack (increased from 1MB) { }