summaryrefslogtreecommitdiff
path: root/libbridge/src/main/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libbridge/src/main/cpp')
-rw-r--r--libbridge/src/main/cpp/wallet2_api_c.cpp2
-rw-r--r--libbridge/src/main/cpp/wallet2_api_c.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/libbridge/src/main/cpp/wallet2_api_c.cpp b/libbridge/src/main/cpp/wallet2_api_c.cpp
index 36197be..b3ea430 100644
--- a/libbridge/src/main/cpp/wallet2_api_c.cpp
+++ b/libbridge/src/main/cpp/wallet2_api_c.cpp
@@ -1147,7 +1147,7 @@ uint32_t MONERO_Wallet_defaultMixin(void* wallet_ptr) {
return wallet->defaultMixin();
}
// virtual void setDefaultMixin(uint32_t arg) = 0;
-void MONERO_Wallet_setTefaultMixin(void* wallet_ptr, uint32_t arg) {
+void MONERO_Wallet_setDefaultMixin(void* wallet_ptr, uint32_t arg) {
Monero::Wallet *wallet = reinterpret_cast<Monero::Wallet*>(wallet_ptr);
return wallet->setDefaultMixin(arg);
}
diff --git a/libbridge/src/main/cpp/wallet2_api_c.h b/libbridge/src/main/cpp/wallet2_api_c.h
index 25db267..526d435 100644
--- a/libbridge/src/main/cpp/wallet2_api_c.h
+++ b/libbridge/src/main/cpp/wallet2_api_c.h
@@ -696,7 +696,7 @@ void* MONERO_Wallet_subaddressAccount(void* wallet_ptr);
// virtual uint32_t defaultMixin() const = 0;
uint32_t MONERO_Wallet_defaultMixin(void* wallet_ptr);
// virtual void setDefaultMixin(uint32_t arg) = 0;
-void MONERO_Wallet_setTefaultMixin(void* wallet_ptr, uint32_t arg);
+void MONERO_Wallet_setDefaultMixin(void* wallet_ptr, uint32_t arg);
// virtual bool setCacheAttribute(const std::string &key, const std::string &val) = 0;
bool MONERO_Wallet_setCacheAttribute(void* wallet_ptr, const char* key, const char* val);
// virtual std::string getCacheAttribute(const std::string &key) const = 0;