From c710ee5fb58ffab5c26e89d1a51241828097b733 Mon Sep 17 00:00:00 2001 From: cohcho Date: Wed, 7 Oct 2020 09:27:04 +0000 Subject: [PATCH] RxVM: fix compilation error --- src/crypto/rx/RxVm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/rx/RxVm.cpp b/src/crypto/rx/RxVm.cpp index baf2aa4d..aa2217fc 100644 --- a/src/crypto/rx/RxVm.cpp +++ b/src/crypto/rx/RxVm.cpp @@ -64,7 +64,7 @@ randomx_vm* xmrig::RxVm::create(RxDataset *dataset, uint8_t *scratchpad, bool so rx_blake2b_use_sse41 = Cpu::info()->has(ICpuInfo::FLAG_SSE41) ? 1 : 0; # endif - return randomx_create_vm(static_cast(flags), !dataset()->get() ? dataset->cache()->get() : nullptr, dataset->get(), scratchpad, node); + return randomx_create_vm(static_cast(flags), !dataset->get() ? dataset->cache()->get() : nullptr, dataset->get(), scratchpad, node); }