diff --git a/signer/src/types/bytes.rs b/signer/src/types/bytes.rs index 503927676..76d84d0dd 100644 --- a/signer/src/types/bytes.rs +++ b/signer/src/types/bytes.rs @@ -32,7 +32,7 @@ impl Bytes { } /// Convert back to vector pub fn to_vec(self) -> Vec { - let Bytes(x) = self; x + self.0 } }