diff --git a/coordinator/src/tributary/mod.rs b/coordinator/src/tributary/mod.rs index e129df8f..28c7fb39 100644 --- a/coordinator/src/tributary/mod.rs +++ b/coordinator/src/tributary/mod.rs @@ -686,7 +686,7 @@ impl TransactionTrait for Transaction { // Make sure the part we're cutting off is the signature assert_eq!(tx.drain((tx.len() - 64) ..).collect::>(), signed.signature.serialize()); } - Blake2s256::digest(tx).into() + Blake2s256::digest([b"Coordinator Tributary Transaction".as_ref(), &tx].concat()).into() } fn verify(&self) -> Result<(), TransactionError> {