From 27ef427e026545bdfc3aa0fc1ec0336a6313ef88 Mon Sep 17 00:00:00 2001 From: husobee Date: Thu, 29 Jul 2021 16:31:52 -0400 Subject: [PATCH] wrong value for result of wallet get --- wallet/outputs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/outputs.go b/wallet/outputs.go index b415025a8..ca497b04d 100644 --- a/wallet/outputs.go +++ b/wallet/outputs.go @@ -154,7 +154,7 @@ func infoToResponseV3(info *walletutils.Info) ResponseV3 { // this brave wallet has a linked deposit account resp.DepositAccountProvider = &DepositAccountProviderDetailsV3{ Name: info.UserDepositAccountProvider, - ID: &info.ProviderID, + ID: &info.UserDepositDestination, LinkingID: linkingID, AnonymousAddress: anonymousAddress, }