-
Notifications
You must be signed in to change notification settings - Fork 17
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
Do some of the todos #102
Do some of the todos #102
Conversation
@@ -737,7 +742,6 @@ impl HarborWallet { | |||
_ => "Unknown".to_string(), | |||
}; | |||
|
|||
// TODO: what to do about balance in this case? Maybe it should be Option<u64>? |
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.
we didnt need the balance here
@@ -1,4 +1,4 @@ | |||
/target |
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.
on my system running just run
from the root dir still creates a target dir in the root. so maybe we need /target
and */target
?
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, fixed
match self.send_amount_input_str.parse::<u64>() { | ||
Ok(amount) => Some(amount), | ||
Err(e) => { | ||
eprintln!("Error parsing amount: {e}"); |
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.
nice I can show a toast for these parse fails. I also need to fix the amount input so you can only type numbers
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 also need to fix the amount input so you can only type numbers
i tried to do this but couldnt figure it out
No description provided.