We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0acdac4 commit 7a6c8daCopy full SHA for 7a6c8da
1 file changed
stackslib/src/chainstate/nakamoto/miner.rs
@@ -66,7 +66,9 @@ pub fn make_mem_abort_callback(limit_bytes: u64) -> AbortCallback {
66
return AbortCallback::None;
67
}
68
if !tracking_allocator_installed() {
69
- panic!("Tracking allocator must be installed to set a memory limit");
+ error!(
70
+ "TrackingAllocator is not installed as the global allocator; any miner or signer configured memory limits will never trigger"
71
+ );
72
73
AbortCallback::MemAbort {
74
baseline: thread_allocated(),
0 commit comments