Skip to content

Commit

Permalink
core: format
Browse files Browse the repository at this point in the history
  • Loading branch information
sehyunc committed Dec 24, 2024
1 parent 3e4e692 commit 1d3df13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/createAuthConfig.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import invariant from 'tiny-invariant'
import { keyTypes, type BaseConfig } from './createConfig.js'
import type * as rustUtils from './utils.d.ts'
import type { Hex } from 'viem'
import { type BaseConfig, keyTypes } from './createConfig.js'
import type * as rustUtils from './utils.d.ts'

export type CreateAuthConfigParameters = {
apiKey: string
Expand Down
2 changes: 1 addition & 1 deletion wasm/src/external_api/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ pub fn deposit(
}
"external" => {
if let Some(new_pk) = &new_public_key {
handle_key_rotation(&mut new_wallet, new_pk).unwrap();
wrap_eyre!(handle_key_rotation(&mut new_wallet, new_pk)).unwrap();
}
}
_ => return Err(JsError::new("Invalid key type")),
Expand Down

0 comments on commit 1d3df13

Please sign in to comment.