This repository was archived by the owner on Dec 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Adds wallet properties #26
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
#ifndef BAT_LEDGER_WALLET_INFO_HANDLER_ | ||
#define BAT_LEDGER_WALLET_INFO_HANDLER_ | ||
|
||
#include <string> | ||
#include <map> | ||
#include <vector> | ||
|
||
#include "bat/ledger/export.h" | ||
|
||
namespace ledger { | ||
|
||
struct GRANT { | ||
std::string altcurrency; | ||
std::string probi; | ||
unsigned int expiryTime; | ||
}; | ||
|
||
LEDGER_EXPORT struct WalletInfo { | ||
WalletInfo(); | ||
~WalletInfo(); | ||
WalletInfo(const WalletInfo& info); | ||
std::string altcurrency_; | ||
std::string probi_; | ||
double balance_; | ||
std::map<std::string, double> rates_; | ||
std::vector<double> parameters_choices_; | ||
std::vector<double> parameters_range_; | ||
unsigned int parameters_days_; | ||
std::vector<GRANT> grants_; | ||
}; | ||
|
||
} // namespace ledger | ||
|
||
#endif // BAT_LEDGER_WALLET_INFO_HANDLER_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,6 +149,32 @@ namespace braveledger_bat_helper { | |
std::vector<BATCH_VOTES_INFO_ST> batchVotesInfo_; | ||
}; | ||
|
||
struct GRANT { | ||
GRANT(); | ||
~GRANT(); | ||
std::string altcurrency; | ||
std::string probi; | ||
uint64_t expiryTime; | ||
}; | ||
|
||
struct WALLET_PROPERTIES_ST { | ||
WALLET_PROPERTIES_ST(); | ||
~WALLET_PROPERTIES_ST(); | ||
WALLET_PROPERTIES_ST(const WALLET_PROPERTIES_ST& properties); | ||
|
||
//load from json string | ||
bool loadFromJson(const std::string & json); | ||
|
||
std::string altcurrency_; | ||
std::string probi_; | ||
double balance_; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. probably it was missed in previous implementation, the same as above about default values for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
std::map<std::string, double> rates_; | ||
std::vector<double> parameters_choices_; | ||
std::vector<double> parameters_range_; | ||
unsigned int parameters_days_; | ||
std::vector<GRANT> grants_; | ||
}; | ||
|
||
struct CLIENT_STATE_ST { | ||
CLIENT_STATE_ST(); | ||
CLIENT_STATE_ST(const CLIENT_STATE_ST&); | ||
|
@@ -158,6 +184,7 @@ namespace braveledger_bat_helper { | |
bool loadFromJson(const std::string & json); | ||
|
||
WALLET_INFO_ST walletInfo_; | ||
WALLET_PROPERTIES_ST walletProperties_; | ||
uint64_t bootStamp_ = 0u; | ||
uint64_t reconcileStamp_ = 0u; | ||
std::string personaId_; | ||
|
@@ -209,23 +236,6 @@ namespace braveledger_bat_helper { | |
unsigned int votes_ = 0; | ||
}; | ||
|
||
struct WALLET_PROPERTIES_ST { | ||
WALLET_PROPERTIES_ST(); | ||
~WALLET_PROPERTIES_ST(); | ||
|
||
//load from json string | ||
bool loadFromJson(const std::string & json); | ||
|
||
std::string altcurrency_; | ||
double balance_; | ||
std::map<std::string, double> rates_; | ||
std::string parameters_currency_; | ||
double parameters_fee_; | ||
std::vector<double> parameters_choices_; | ||
std::vector<double> parameters_range_; | ||
unsigned int parameters_days_; | ||
}; | ||
|
||
struct SURVEYOR_INFO_ST { | ||
SURVEYOR_INFO_ST(); | ||
~SURVEYOR_INFO_ST(); | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probi?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's the representation of balance but it's a big number with 18 places. Same thing as satoshi for BTC. So 15 balance is 15000000000000000000 probi