Skip to content

Commit b90dfbf

Browse files
committed
chore: fix next addr naming
1 parent 604590e commit b90dfbf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/wasm/js/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async function run() {
7272
console.log("Balance:", wallet.balance());
7373

7474
// Test address generation
75-
console.log("New address:", wallet.get_new_address());
75+
console.log("New address:", wallet.reveal_next_address());
7676

7777
// handle changeset merge on rust side
7878
const mergedDataString = wallet.take_merged(walletDataString);

examples/wasm/rust/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ impl WalletWrapper {
128128
balance.total().to_sat()
129129
}
130130

131-
pub fn get_new_address(&mut self) -> String {
131+
pub fn reveal_next_address(&mut self) -> String {
132132
let address = self
133133
.wallet
134134
.reveal_next_address(KeychainKind::External);

0 commit comments

Comments
 (0)