summaryrefslogtreecommitdiff
path: root/ui/app/models/account.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/models/account.js')
-rw-r--r--ui/app/models/account.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui/app/models/account.js b/ui/app/models/account.js
index 04c8163..0ffdb07 100644
--- a/ui/app/models/account.js
+++ b/ui/app/models/account.js
@@ -114,7 +114,6 @@ export default class Account {
static active() {
return bitmask.bonafide.user.active().then(
response => {
- console.log(response)
if (response.user == '<none>') {
return null
} else {
@@ -139,7 +138,6 @@ export default class Account {
static create(address, password) {
return bitmask.bonafide.user.create(address, password).then(
response => {
- console.log(response)
return new Account(address)
}
)