-
Notifications
You must be signed in to change notification settings - Fork 56
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
Fix minor wallet issues #220
Merged
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
6d63e8a
ignore vscode ide/settings
zees-dev 657cf84
added rust toolchain
zees-dev 3fa1b27
fix new_at_index not printing checksum address
zees-dev 35e29d0
wallet existance also checks content; handles the case if it's not a …
zees-dev 9792e74
removed redundant helper functions; replaced with tempfile dep instead
zees-dev 46bfbac
updated create_wallet test helper func to take optional file content
zees-dev 11e0b50
existing unit tests refactored to remove nesting
zees-dev 8fadf3a
new unit tests for ensure_no_wallet_exists
zees-dev 9632374
updated CI toolchain to match rust-toolchain.toml
zees-dev ab3e98d
github actions checkoutv4 and nodev4
zees-dev 6e6af2e
ci update to use semver rust version
zees-dev 8f9c6d0
fixed CI nightly version for code cov
zees-dev eaf5301
reverting CI and toolchain to use original nightly version
zees-dev 78511f8
fixed cargo clippy errors
zees-dev 762405c
Revert "reverting CI and toolchain to use original nightly version"
zees-dev 3ac5970
ci: install nightly version for code-cov
kayagokalp 6b82bc4
updated rust toolchain to stable 1.82.0; nightly to nightly-2024-10-2…
zees-dev 0306d83
create_wallet added description
zees-dev 515cb7a
Merge branch 'master' into fix/minor-wallet-issues
zees-dev f8124e8
create_wallet updated param name; content -> data; updated description
zees-dev 9abc8ad
create_wallet -> serialize_wallet_to_file; using an enum with variant…
zees-dev 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
profile = "default" # include rustfmt, clippy | ||
channel = "1.80.0" | ||
channel = "1.82.0" |
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.
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.
I guess I meant, what is content? I can see that it's optional, but I don't understand what content is made up of.
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.
Content could be anything, just populates file with data. Doesn't have to be specific format.
P.s. Feel free to suggest a description (or improvement)
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.
How about something like:
Leaving this as a suggestion only maybe Josh has something else in mind
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.
thanks; updated: #220
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.
Thanks Kaya, that's perfect.