Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
82e61dd
Added an extra warning message when failing to reach the node, work i…
Anynomouss Jan 24, 2025
4fb0b7b
In the middle of debugging hell, default overwrite any updates to the…
Anynomouss Jan 30, 2025
0573393
More debugging, next trace the overwrite of the config
Anynomouss Feb 5, 2025
80586cc
Added get get_node_path function, seperating wallet dir and node_dir …
Anynomouss Feb 13, 2025
c0216a1
Tested wallet config creation fix for Issues: #728 #3394 Pull 3420, p…
Anynomouss Feb 14, 2025
0c5bdde
Removed some debugging code
Anynomouss Feb 18, 2025
7b1144e
Fixed passing config to create_config function, some more test needed…
Anynomouss Mar 1, 2025
b45b603
All test succeed: a) normal, b) top-dir, c) here, d) with default con…
Anynomouss Mar 1, 2025
fe86c7a
Cleaning up
Anynomouss Mar 1, 2025
c5b8c34
Fixed a single test for config that needed adjusting
Anynomouss Mar 3, 2025
38aa2f5
Merge branch 'mimblewimble:master' into master
Anynomouss Mar 13, 2025
37715f1
Fixes config node_dir problems, all logic for config creation moved g…
Anynomouss Apr 4, 2025
2118855
Additional fix for double path generation bug present in the original…
Anynomouss Apr 4, 2025
004c469
Second attempt to fix double path generation bug present in the origi…
Anynomouss Apr 4, 2025
cd2f64c
Third attempt to make a workaround for the Linux specific bug in the …
Anynomouss Apr 6, 2025
39f00fe
Fix for top dir with backlashes to work on Linux and to properly form…
Anynomouss Apr 8, 2025
a37aa09
Smart config loading, initializing, normal and template works, do som…
Anynomouss Apr 10, 2025
da00501
Some last fixes to format directory paths using OS seperator everwher…
Anynomouss Apr 11, 2025
d3625a6
Added auto detection of wallet-dir in current directory, fix for load…
Anynomouss May 23, 2025
e05aefa
Preparing to merge with Pull 734, not fully ready yet
Anynomouss Jun 30, 2025
34b1d0c
Fixed issue with top-dir without init, better absolut e path and more…
Sep 12, 2025
2bea5b6
Same as previous fixes to absoluet path and more, apperently forgot t…
Sep 13, 2025
6d99a43
Wallet init -t and -h working, as well as with info, always detect gr…
Sep 18, 2025
aed9327
Committing, changed git setings for core.autocrlf to false to avoid L…
Sep 18, 2025
86de7c6
Normalize line endings
Sep 18, 2025
ea1d68f
Normalize line endings, attempt 2
Sep 18, 2025
8b93f2a
Update Cargo.toml
Anynomouss Sep 19, 2025
a51121c
Update command.rs cleaning up irrelevant changes 2
Anynomouss Sep 19, 2025
cb245d6
Update transaction.rs - no real changes, revert small fromat change
Anynomouss Sep 19, 2025
a6ba9c9
Implemented all feedback from aglkm
Anynomouss Oct 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ grin.log
wallet.seed
test_output
.idea/
*.vs
.gitattributes
Empty file modified .hooks/pre-commit
100755 → 100644
Empty file.
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions config/src/comments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,9 @@ pub fn migrate_comments(
None
}
false => {
let comments: String =
vec_old_conf.iter().map(|s| s.chars()).flatten().collect();
let comments: String = vec_old_conf.iter().flat_map(|s| s.chars()).collect();
let key = get_key(line_nospace);
match !(key == "NOT_FOUND") {
match key != "NOT_FOUND" {
true => {
vec_old_conf.clear();
hm_key_cmt_old.insert(key.clone(), comments);
Expand All @@ -356,10 +355,10 @@ pub fn migrate_comments(
.filter_map(|line| {
let line_nospace = line.trim();
let is_ascii_control = line_nospace.chars().all(|x| x.is_ascii_control());
match !(line.contains("#") || is_ascii_control) {
match !line.contains("#") && !is_ascii_control {
true => {
let key = get_key(line_nospace);
match !(key == "NOT_FOUND") {
match key != "NOT_FOUND" {
true => Some((key, line_nospace.to_string())),
false => None,
}
Expand Down
Loading
Loading