Skip to content

Commit fab3956

Browse files
committed
fix: change get_auth err message
1 parent 44c6b1d commit fab3956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adapter/src/ethereum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ impl Adapter for EthereumAdapter {
227227
let wallet = self
228228
.wallet
229229
.as_ref()
230-
.ok_or_else(|| AdapterError::Configuration("failed to unlock wallet".to_string()))?;
230+
.ok_or_else(|| AdapterError::Configuration("unlock wallet".to_string()))?;
231231

232232
let era = Utc::now().timestamp_millis() as f64 / 60000.0;
233233
let payload = Payload {

0 commit comments

Comments
 (0)