Compare commits
3 Commits
v0.1.0-dev
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | e6b215be13 | |
Derrick Hammer | 77251407c3 | |
Derrick Hammer | b3f8dba243 |
|
@ -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)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue