Adding from to the signature is redundant

This commit is contained in:
Greg Fitzgerald 2018-04-02 20:34:18 -06:00
parent 84df487f7d
commit 6fec8fad57
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ impl Transaction {
}
fn get_sign_data(&self) -> Vec<u8> {
serialize(&(&self.from, &self.plan, &self.tokens, &self.last_id)).unwrap()
serialize(&(&self.plan, &self.tokens, &self.last_id)).unwrap()
}
/// Sign this transaction.