Copyright update

This commit is contained in:
Rene Vergara 2023-01-09 10:45:23 -06:00
parent 07765ea87b
commit adefcafae6
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
3 changed files with 16 additions and 4 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
{
"name": "zgo",
"version": "1.4.0",
"version": "1.4.1",
"scripts": {
"ng": "ng",
"start": "ng serve",

View File

@ -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();