diff --git a/NBitcoin/NBitcoin.csproj b/NBitcoin/NBitcoin.csproj index fe336fcfe..f3ebf7e72 100644 --- a/NBitcoin/NBitcoin.csproj +++ b/NBitcoin/NBitcoin.csproj @@ -12,7 +12,7 @@ git - 7.0.26 + 7.0.27 9.0 diff --git a/NBitcoin/RPC/RPCException.cs b/NBitcoin/RPC/RPCException.cs index 80167912e..6fd8d14a1 100644 --- a/NBitcoin/RPC/RPCException.cs +++ b/NBitcoin/RPC/RPCException.cs @@ -169,7 +169,15 @@ public enum RPCErrorCode /// /// No wallet specified (error when there are multiple wallets loaded) /// - RPC_WALLET_NOT_SPECIFIED = -19 + RPC_WALLET_NOT_SPECIFIED = -19, + /// + /// This same wallet is already loaded + /// + RPC_WALLET_ALREADY_LOADED = -35, + /// + /// There is already a wallet with the same name + /// + RPC_WALLET_ALREADY_EXISTS = -36 } @@ -243,4 +251,4 @@ public string RPCCodeMessage } } } -#endif \ No newline at end of file +#endif