We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 604590e commit b90dfbfCopy full SHA for b90dfbf
examples/wasm/js/index.js
@@ -72,7 +72,7 @@ async function run() {
72
console.log("Balance:", wallet.balance());
73
74
// Test address generation
75
- console.log("New address:", wallet.get_new_address());
+ console.log("New address:", wallet.reveal_next_address());
76
77
// handle changeset merge on rust side
78
const mergedDataString = wallet.take_merged(walletDataString);
examples/wasm/rust/src/lib.rs
@@ -128,7 +128,7 @@ impl WalletWrapper {
128
balance.total().to_sat()
129
}
130
131
- pub fn get_new_address(&mut self) -> String {
+ pub fn reveal_next_address(&mut self) -> String {
132
let address = self
133
.wallet
134
.reveal_next_address(KeychainKind::External);
0 commit comments