Skip to content

Commit

Permalink
fix/Refactor PayoutUpdate to use ownership transfer and improve crate
Browse files Browse the repository at this point in the history
  • Loading branch information
jayendramadaram committed Jul 2, 2024
1 parent 53496f0 commit 86f25c1
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 349 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.vscode

**/__pycache__
**/.pytest_cache
channels/build
Expand All @@ -17,6 +15,4 @@ proposal/proposal.bbl
proposal/proposal.blg
simulations/logs/*
simulations/*.toolbox
venv
target
todo
venv
320 changes: 0 additions & 320 deletions node/uhpo/docs/spec.md

This file was deleted.

2 changes: 1 addition & 1 deletion node/uhpo/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl fmt::Display for UhpoError {
impl std::error::Error for UhpoError {}

impl UhpoError {
pub fn new_other_error(message: &str) -> Self {
pub fn new(message: &str) -> Self {
UhpoError::Other(message.to_string())
}
}
Loading

0 comments on commit 86f25c1

Please sign in to comment.