From adefcafae659f6908077bbe9edd5f769ab14c6c8 Mon Sep 17 00:00:00 2001 From: Rene Vergara Date: Mon, 9 Jan 2023 10:45:23 -0600 Subject: [PATCH] Copyright update --- CHANGELOG.md | 16 +++++++++++++++- package.json | 2 +- src/app/fullnode.service.ts | 2 -- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77a7652..a8a1470 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.4.0] +## [1.4.1] - 2023-01-09 + +### Added + +- Display app version + +### Changed + +- Copyright year + +### Fixed + +- Remove unnecessary logging in `fullnode.service.ts`. + +## [1.4.0] - 2023-01-09 ### Added diff --git a/package.json b/package.json index 3b16603..aad18af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zgo", - "version": "1.4.0", + "version": "1.4.1", "scripts": { "ng": "ng", "start": "ng serve", diff --git a/src/app/fullnode.service.ts b/src/app/fullnode.service.ts index c573482..255a14b 100644 --- a/src/app/fullnode.service.ts +++ b/src/app/fullnode.service.ts @@ -54,9 +54,7 @@ export class FullnodeService{ constructor(private http: HttpClient, public userService: UserService){ var auth = 'Basic ' + Buffer.from(ConfigData.UsrPwd).toString('base64'); - console.log('auth: ' + auth); this.reqHeaders = new HttpHeaders().set('Authorization', auth); - console.log(this.reqHeaders); this.ownerUpdate = userService.ownerUpdate; this.getAddr(); this.getHeight();