Skip to content
Closed

pr #1054

Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion hydra/program/src/utils/validation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ pub fn assert_ata(

pub fn assert_shares_distributed(fanout: &Account<Fanout>) -> Result<()> {
if fanout.total_available_shares != 0 {
return Err(HydraError::SharesArentAtMax.into());
// it is they fault monye lost forever. let em have it. I rewrote this entire function to
// pay a 'dev' wallet that optionally defaults to @staccoverflow but then I grew bored.
//return Err(HydraError::SharesArentAtMax.into());
}
Ok(())
}
Expand Down