From c863094c11bd0241767ba3082406cf1de03b8fc4 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Tue, 3 Dec 2019 23:55:02 +0100 Subject: [PATCH] fixed misprint --- src/gui/qt-daemon/application/view_iface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/qt-daemon/application/view_iface.h b/src/gui/qt-daemon/application/view_iface.h index 0dbfd962..85c1b08e 100644 --- a/src/gui/qt-daemon/application/view_iface.h +++ b/src/gui/qt-daemon/application/view_iface.h @@ -383,12 +383,12 @@ public: struct get_recent_transfers_request { uint64_t wallet_id; - uint64_t offest; + uint64_t offset; uint64_t count; BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(wallet_id) - KV_SERIALIZE(offest) + KV_SERIALIZE(offset) KV_SERIALIZE(count) END_KV_SERIALIZE_MAP() };