Compare commits

...

3 Commits

Author SHA1 Message Date
semantic-release-bot e6b215be13 chore(release): 0.1.0-develop.61 [skip ci]
# [0.1.0-develop.61](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.60...v0.1.0-develop.61) (2023-09-16)

### Bug Fixes

* need to call our boot method ([b3f8dba](b3f8dba243))
2023-09-16 16:13:53 +00:00
Derrick Hammer 77251407c3
Merge remote-tracking branch 'origin/develop' into develop 2023-09-16 12:12:35 -04:00
Derrick Hammer b3f8dba243
fix: need to call our boot method 2023-09-16 12:12:30 -04:00
4 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
# [0.1.0-develop.61](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.60...v0.1.0-develop.61) (2023-09-16)
### Bug Fixes
* need to call our boot method ([b3f8dba](https://git.lumeweb.com/LumeWeb/libethsync/commit/b3f8dba243465e9a0a6030727e69ab1491cbd2dc))
# [0.1.0-develop.60](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.59...v0.1.0-develop.60) (2023-09-16) # [0.1.0-develop.60](https://git.lumeweb.com/LumeWeb/libethsync/compare/v0.1.0-develop.59...v0.1.0-develop.60) (2023-09-16)

4
npm-shrinkwrap.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "@lumeweb/libethsync", "name": "@lumeweb/libethsync",
"version": "0.1.0-develop.60", "version": "0.1.0-develop.61",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lumeweb/libethsync", "name": "@lumeweb/libethsync",
"version": "0.1.0-develop.60", "version": "0.1.0-develop.61",
"dependencies": { "dependencies": {
"@chainsafe/as-sha256": "^0.3.1", "@chainsafe/as-sha256": "^0.3.1",
"@chainsafe/bls": "7.1.1", "@chainsafe/bls": "7.1.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@lumeweb/libethsync", "name": "@lumeweb/libethsync",
"version": "0.1.0-develop.60", "version": "0.1.0-develop.61",
"type": "module", "type": "module",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -59,7 +59,6 @@ export default class Client extends BaseClient {
); );
this.latestCommittee = checkpoint.nextSyncCommittee.pubkeys; this.latestCommittee = checkpoint.nextSyncCommittee.pubkeys;
if (this._latestPeriod + 1 === this.getCurrentPeriod()) { if (this._latestPeriod + 1 === this.getCurrentPeriod()) {
this.booted = true;
this.emit("synced"); this.emit("synced");
await init("herumi"); await init("herumi");
this._latestPeriod = this.getCurrentPeriod(); this._latestPeriod = this.getCurrentPeriod();
@ -69,6 +68,7 @@ export default class Client extends BaseClient {
} else { } else {
await super.sync(); await super.sync();
} }
await this.boot();
} }
public async rpcCall(method: string, params: any) { public async rpcCall(method: string, params: any) {