Skip to content

Commit 4022345

Browse files
authored
refactor: remove implicit deref
1 parent f5cbff9 commit 4022345

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/rs-sdk/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl From<DapiClientError> for Error {
9191
return consensus_error_value
9292
.to_bytes()
9393
.map(|bytes| {
94-
ConsensusError::deserialize_from_bytes(&*bytes)
94+
ConsensusError::deserialize_from_bytes(&bytes)
9595
.map(|consensus_error| {
9696
Self::Protocol(ProtocolError::ConsensusError(Box::new(
9797
consensus_error,

0 commit comments

Comments
 (0)