Converts wallet without password into protected wallet with password.
## Request Structure
`JSON object:`
```JSON
{
"method": "wallet",
"subcommand": ["convert"],
"arguments": {
"w": "wallet_name",
"password": "password"
},
"id": "1"
}
```
`Parameters:`
**`w`** - name of the wallet
**`password`** - wallet password
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "wallet",
"subcommand": ["convert"],
"arguments": {
"w": "testwal",
"password": "1234"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
[
{
"Sign wallet": "correct",
"Wallet name": "testwal",
"Status": "successfully converted"
}
]
],
"id": 1
}
```