summaryrefslogtreecommitdiffstats
path: root/src/account-server/storage.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/account-server/storage.hpp')
-rw-r--r--src/account-server/storage.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/account-server/storage.hpp b/src/account-server/storage.hpp
index 8651d20..27d1299 100644
--- a/src/account-server/storage.hpp
+++ b/src/account-server/storage.hpp
@@ -74,8 +74,8 @@ class Storage
void banCharacter(int id, int duration);
- void delCharacter(int charId, bool startTransaction) const;
- void delCharacter(Character *character, bool startTransaction) const;
+ void delCharacter(int charId) const;
+ void delCharacter(Character *character) const;
void checkBannedAccounts();
@@ -83,8 +83,7 @@ class Storage
bool doesEmailAddressExist(const std::string &email);
bool doesCharacterNameExist(const std::string &name);
- bool updateCharacter(Character *ptr,
- bool startTransaction = true);
+ bool updateCharacter(Character *ptr);
void flushSkill(const Character *character, int skill_id);