Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
Breeze
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DeStream-public
Breeze
Commits
e741314c
Commit
e741314c
authored
Nov 08, 2017
by
dev0tion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove network from create process
parent
b3ae12f7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
12 deletions
+1
-12
create.component.html
Breeze.UI/src/app/setup/create/create.component.html
+0
-8
create.component.ts
Breeze.UI/src/app/setup/create/create.component.ts
+0
-1
wallet-creation.ts
Breeze.UI/src/app/shared/classes/wallet-creation.ts
+1
-3
No files found.
Breeze.UI/src/app/setup/create/create.component.html
View file @
e741314c
...
...
@@ -28,14 +28,6 @@
<div
class=
"col-12"
>
<div
class=
"form-control-feedback"
>
Your password will be required to recover your wallet in the future. Keep it safe.
</div>
</div>
<div
class=
"form-group col-12"
>
<label
class=
"text-left"
for=
"walletNetwork"
>
Network
</label>
<select
class=
"form-control custom-select"
name=
"network"
formControlName=
"selectNetwork"
>
<!--<option value="main">Main</option>-->
<option
value=
"test"
>
Testnet
</option>
<!--<option value="stratistest">StratisTest</option>-->
</select>
</div>
</form>
</div>
<!-- /row-->
...
...
Breeze.UI/src/app/setup/create/create.component.ts
View file @
e741314c
...
...
@@ -108,7 +108,6 @@ export class CreateComponent implements OnInit {
this
.
createWalletForm
.
get
(
"walletName"
).
value
,
this
.
mnemonic
,
this
.
createWalletForm
.
get
(
"walletPassword"
).
value
,
this
.
createWalletForm
.
get
(
"selectNetwork"
).
value
);
this
.
createWallets
(
this
.
newWallet
);
}
...
...
Breeze.UI/src/app/shared/classes/wallet-creation.ts
View file @
e741314c
export
class
WalletCreation
{
constructor
(
name
:
string
,
mnemonic
:
string
,
password
:
string
,
network
:
string
,
folderPath
:
string
=
null
)
{
constructor
(
name
:
string
,
mnemonic
:
string
,
password
:
string
,
folderPath
:
string
=
null
)
{
this
.
name
=
name
;
this
.
mnemonic
=
mnemonic
;
this
.
password
=
password
;
this
.
network
=
network
;
this
.
folderPath
=
folderPath
;
}
name
:
string
;
mnemonic
:
string
;
password
:
string
;
network
:
string
;
folderPath
?:
string
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment