mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
toP2PPeerInfo's ObservedUptime field is p2ppeer.Uint32 — the quoted-integer JSON wrapper local to luxfi/p2p/peer. Previously cast through codec/jsonrpc.Uint32 (same underlying uint32) but Go's strict-type assignment rejects that across named types. Use the field's own declared type directly. Bumps utils to v1.1.5 (now hosting json subpackage used by other modules in the codec rip). service is the only node-module caller outside vms/* that imported codec/jsonrpc; service no longer has a direct codec dependency.