Skip to content

Commit

Permalink
chore: revert back to wpkh
Browse files Browse the repository at this point in the history
  • Loading branch information
osiastedian committed Oct 26, 2023
1 parent 323fcf8 commit 7817f3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions desktop-wallet/src/context/Blockbook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ const BlockbookContext = createContext({} as IBlockbookContext);

export const useBlockbook = () => useContext(BlockbookContext);

const script = "tr";
const path = `m/86'/57'/0'`;
const script = "wpkh";
const path = `m/84'/57'/0'`;

type BlockbookProviderProps = {
children: React.ReactNode;
Expand Down
2 changes: 1 addition & 1 deletion desktop-wallet/src/context/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface IWalletContext {

const WalletContext = createContext<IWalletContext>({} as IWalletContext);

const descriptor = `tr(@0/**)`;
const descriptor = `wpkh(@0/**)`;

export const useWallet = () => useContext(WalletContext);

Expand Down

0 comments on commit 7817f3e

Please sign in to comment.