@aztec/p2p 0.77.1 → 0.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -75,7 +75,7 @@ import { ReqResp } from '../reqresp/reqresp.js';
|
|
|
75
75
|
this.attestationValidator = new AttestationValidator(epochCache);
|
|
76
76
|
this.blockProposalValidator = new BlockProposalValidator(epochCache);
|
|
77
77
|
this.blockReceivedCallback = async (block)=>{
|
|
78
|
-
this.logger.
|
|
78
|
+
this.logger.debug(`Handler not yet registered: Block received callback not set. Received block for slot ${block.slotNumber.toNumber()} from peer.`, {
|
|
79
79
|
p2pMessageIdentifier: await block.p2pMessageIdentifier()
|
|
80
80
|
});
|
|
81
81
|
return undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/p2p",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.78.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -65,14 +65,14 @@
|
|
|
65
65
|
]
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@aztec/constants": "0.
|
|
69
|
-
"@aztec/epoch-cache": "0.
|
|
70
|
-
"@aztec/foundation": "0.
|
|
71
|
-
"@aztec/kv-store": "0.
|
|
72
|
-
"@aztec/noir-protocol-circuits-types": "0.
|
|
73
|
-
"@aztec/protocol-contracts": "0.
|
|
74
|
-
"@aztec/stdlib": "0.
|
|
75
|
-
"@aztec/telemetry-client": "0.
|
|
68
|
+
"@aztec/constants": "0.78.0",
|
|
69
|
+
"@aztec/epoch-cache": "0.78.0",
|
|
70
|
+
"@aztec/foundation": "0.78.0",
|
|
71
|
+
"@aztec/kv-store": "0.78.0",
|
|
72
|
+
"@aztec/noir-protocol-circuits-types": "0.78.0",
|
|
73
|
+
"@aztec/protocol-contracts": "0.78.0",
|
|
74
|
+
"@aztec/stdlib": "0.78.0",
|
|
75
|
+
"@aztec/telemetry-client": "0.78.0",
|
|
76
76
|
"@chainsafe/discv5": "9.0.0",
|
|
77
77
|
"@chainsafe/enr": "3.0.0",
|
|
78
78
|
"@chainsafe/libp2p-gossipsub": "13.0.0",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"xxhash-wasm": "^1.1.0"
|
|
102
102
|
},
|
|
103
103
|
"devDependencies": {
|
|
104
|
-
"@aztec/archiver": "0.
|
|
104
|
+
"@aztec/archiver": "0.78.0",
|
|
105
105
|
"@jest/globals": "^29.5.0",
|
|
106
106
|
"@types/jest": "^29.5.0",
|
|
107
107
|
"@types/node": "^18.14.6",
|
|
@@ -137,7 +137,7 @@ export class LibP2PService<T extends P2PClientType> extends WithTracer implement
|
|
|
137
137
|
this.blockProposalValidator = new BlockProposalValidator(epochCache);
|
|
138
138
|
|
|
139
139
|
this.blockReceivedCallback = async (block: BlockProposal): Promise<BlockAttestation | undefined> => {
|
|
140
|
-
this.logger.
|
|
140
|
+
this.logger.debug(
|
|
141
141
|
`Handler not yet registered: Block received callback not set. Received block for slot ${block.slotNumber.toNumber()} from peer.`,
|
|
142
142
|
{ p2pMessageIdentifier: await block.p2pMessageIdentifier() },
|
|
143
143
|
);
|