mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* new feature: Wallet Receive Page closes #965 * Conserve addresses by waiting till address is spent before generating each run * fix tests * Filter by cryptocode before matching outpoint * fix build * fix edge case issue * use address in keypathinfo directly * rebase fixes * rebase fixes * remove duplicate code * fix messy condition * fixes * fix e2e * fix
17 lines
286 B
C#
17 lines
286 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BTCPayServer.Views.Wallets
|
|
{
|
|
public enum WalletsNavPages
|
|
{
|
|
Send,
|
|
Transactions,
|
|
Rescan,
|
|
PSBT,
|
|
Settings,
|
|
Receive
|
|
}
|
|
}
|