File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ This command runs the mint on your local computer. Skip this step if you want to
177177## Docker
178178
179179```
180- docker run -d -p 3338:3338 --name nutshell -e MINT_BACKEND_BOLT11_SAT=FakeWallet -e MINT_LISTEN_HOST=0.0.0.0 -e MINT_LISTEN_PORT=3338 -e MINT_PRIVATE_KEY=TEST_PRIVATE_KEY cashubtc/nutshell:0.17 .0 poetry run mint
180+ docker run -d -p 3338:3338 --name nutshell -e MINT_BACKEND_BOLT11_SAT=FakeWallet -e MINT_LISTEN_HOST=0.0.0.0 -e MINT_LISTEN_PORT=3338 -e MINT_PRIVATE_KEY=TEST_PRIVATE_KEY cashubtc/nutshell:0.18 .0 poetry run mint
181181```
182182
183183## From this repository
Original file line number Diff line number Diff line change 88
99env = Env ()
1010
11- VERSION = "0.17 .0"
11+ VERSION = "0.18 .0"
1212
1313
1414def find_env_file ():
@@ -206,6 +206,7 @@ class MintInformation(CashuSettings):
206206 mint_info_urls : List [str ] = Field (default = None )
207207 mint_info_tos_url : str = Field (default = None )
208208
209+
209210class MintManagementRPCSettings (MintSettings ):
210211 mint_rpc_server_enable : bool = Field (default = False )
211212 mint_rpc_server_ca : str = Field (default = None )
@@ -215,6 +216,7 @@ class MintManagementRPCSettings(MintSettings):
215216 mint_rpc_server_port : int = Field (default = 8086 )
216217 mint_rpc_server_mutual_tls : bool = Field (default = True )
217218
219+
218220class WalletSettings (CashuSettings ):
219221 tor : bool = Field (default = False )
220222 socks_host : str = Field (default = None ) # deprecated
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " cashu"
3- version = " 0.17 .0"
3+ version = " 0.18 .0"
44description = " Ecash wallet and mint"
55authors = [" calle <callebtc@protonmail.com>" ]
66license = " MIT"
Original file line number Diff line number Diff line change 1313
1414setuptools .setup (
1515 name = "cashu" ,
16- version = "0.17 .0" ,
16+ version = "0.18 .0" ,
1717 description = "Ecash wallet and mint" ,
1818 long_description = long_description ,
1919 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments