diff --git a/common/sphinx.c b/common/sphinx.c index 66e361a51..61e4c58fc 100644 --- a/common/sphinx.c +++ b/common/sphinx.c @@ -92,7 +92,7 @@ struct onionpacket *parse_onionpacket( m = talz(ctx, struct onionpacket); read_buffer(&m->version, src, 1, &p); - if (m->version != 0x01) { + if (m->version != 0x00) { // FIXME add logging return tal_free(m); } @@ -357,7 +357,7 @@ struct onionpacket *create_onionpacket( if (!params) return NULL; - packet->version = 1; + packet->version = 0; memset(nexthmac, 0, SECURITY_PARAMETER); memset(packet->routinginfo, 0, ROUTING_INFO_SIZE);