Skip to content

Commit

Permalink
Fix WalletGreen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
AxVultis committed Apr 9, 2023
1 parent c5b35b8 commit 52ae839
Show file tree
Hide file tree
Showing 6 changed files with 122 additions and 161 deletions.
2 changes: 1 addition & 1 deletion include/IWallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class IWallet : public IObservable<IWalletObserver>
virtual ~IWallet() = default;

virtual void initialize(const std::string& path, const std::string& password) = 0;
virtual void createDeposit(uint64_t amount, uint64_t term, std::string sourceAddress, std::string destinationAddress, std::string &transactionHash) = 0;
virtual void createDeposit(uint64_t amount, uint32_t term, std::string sourceAddress, std::string destinationAddress, std::string &transactionHash) = 0;
virtual void withdrawDeposit(DepositId depositId, std::string &transactionHash) = 0;
virtual Deposit getDeposit(size_t depositIndex) const = 0;
virtual void initializeWithViewKey(const std::string& path, const std::string& password, const crypto::SecretKey& viewSecretKey) = 0;
Expand Down
Loading

0 comments on commit 52ae839

Please sign in to comment.