-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modifications to enable Offline Signing in monero-gui and possible... #9492
Open
DiosDelRayo
wants to merge
22
commits into
monero-project:master
Choose a base branch
from
DiosDelRayo:monerogui-otsur
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
418adb7
add endpoints: export_encrypted_key_images and import_encrypted_key_i…
54dab2e
add magic
86ba8e2
fix /
9b6499c
fix /
d2e3cff
change to hex_to_pod
5722f42
change back and add debug code
67e634e
more debug code
2691395
more debug code
c5822d7
more debug code
75c14c8
final modifications to adding endpoints import_encrypted_key_images a…
5e7c234
.gitignore
e2fe45d
manual merge
25b0950
remove whitespace
84f402b
Modifications to enable Offline Signing in monero-gui and poss…
2bc362d
Modifications to enable Offline Signing in monero-gui and poss…
23d8934
https://github.com/monero-project/monero/pull/9492#pullrequestreview-…
744bf8d
https://github.com/monero-project/monero/pull/9492#pullrequestreview-…
bc76da9
https://github.com/monero-project/monero/pull/9492#pullrequestreview-…
c399de2
https://github.com/monero-project/monero/pull/9492#pullrequestreview-…
b8ad399
Merge branch 'monero-project:master' into monerogui-otsur
DiosDelRayo 9e42096
Merge remote-tracking branch 'origin' into monerogui-otsur
fa52496
Merge branch 'monerogui-otsur' of github.com:DiosDelRayo/monero into …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,3 +120,5 @@ nbproject | |
__pycache__/ | ||
*.pyc | ||
*.log | ||
.gitignore | ||
/dist/ |
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
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 | ||||
---|---|---|---|---|---|---|
|
@@ -166,10 +166,16 @@ class WalletImpl : public Wallet | |||||
std::set<uint32_t> subaddr_indices = {}) override; | ||||||
virtual PendingTransaction * createSweepUnmixableTransaction() override; | ||||||
bool submitTransaction(const std::string &fileName) override; | ||||||
bool submitTransactionFromString(const std::string &data) override; | ||||||
virtual UnsignedTransaction * loadUnsignedTx(const std::string &unsigned_filename) override; | ||||||
virtual UnsignedTransaction * loadUnsignedTxFromString(const std::string &data) override; | ||||||
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.
Suggested change
|
||||||
std::string exportKeyImagesAsString(bool all = false) override; | ||||||
bool exportKeyImages(const std::string &filename, bool all = false) override; | ||||||
bool importKeyImagesFromString(const std::string &data) override; | ||||||
bool importKeyImages(const std::string &filename) override; | ||||||
std::string exportOutputsAsString(bool all = false) override; | ||||||
bool exportOutputs(const std::string &filename, bool all = false) override; | ||||||
bool importOutputsFromString(const std::string &data) override; | ||||||
bool importOutputs(const std::string &filename) override; | ||||||
bool scanTransactions(const std::vector<std::string> &txids) override; | ||||||
|
||||||
|
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
Oops, something went wrong.
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.