Skip to content

Commit

Permalink
Add AnonScoreTarget to RPC getwalletinfo (#11351)
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolay committed Aug 22, 2023
1 parent d34e2ee commit 9e9e043
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WalletWasabi.Daemon/Rpc/WasabiJsonRpcService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ public object WalletInfo()
: accounts,
balance = activeWallet.Coins
.Where(c => !c.IsSpent() && !c.SpentAccordingToBackend)
.Sum(c => c.Amount.Satoshi)
.Sum(c => c.Amount.Satoshi),
anonScoreTarget = activeWallet.AnonScoreTarget
};
}

Expand Down

0 comments on commit 9e9e043

Please sign in to comment.