fix: need to store walletAddress
This commit is contained in:
parent
ec1479b3c8
commit
71ed20ff13
|
@ -11,3 +11,15 @@ index aae75cf..96939be 100644
|
||||||
this.badgeGeneratorClient = new badges_pb_service_1.BadgeGeneratorClient(this.badgeServerAddress, this.getTransportWrapped());
|
this.badgeGeneratorClient = new badges_pb_service_1.BadgeGeneratorClient(this.badgeServerAddress, this.getTransportWrapped());
|
||||||
}
|
}
|
||||||
isActive() {
|
isActive() {
|
||||||
|
diff --git a/node_modules/@lavanet/lava-sdk/bin/src/sdk/sdk.js b/node_modules/@lavanet/lava-sdk/bin/src/sdk/sdk.js
|
||||||
|
index 89267e8..90f6a88 100644
|
||||||
|
--- a/node_modules/@lavanet/lava-sdk/bin/src/sdk/sdk.js
|
||||||
|
+++ b/node_modules/@lavanet/lava-sdk/bin/src/sdk/sdk.js
|
||||||
|
@@ -89,6 +89,7 @@ class LavaSDK {
|
||||||
|
if (!this.badgeManager.isActive() || this.privKey != "") {
|
||||||
|
const wallet = yield (0, wallet_1.createWallet)(this.privKey);
|
||||||
|
this.account = yield wallet.getConsumerAccount();
|
||||||
|
+ this.walletAddress = this.account.address;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
const { wallet, privKey } = yield (0, wallet_1.createDynamicWallet)();
|
||||||
|
|
Loading…
Reference in New Issue