topology-foundation / topchain-node

MIT License
2 stars 7 forks source link

Vertex protobuf definition does not get translated into GO properly #37

Closed JanLewDev closed 1 week ago

JanLewDev commented 3 weeks ago
message Vertex {
    message Operation {
        string type = 1;
        google.protobuf.Value value = 2;
    }

    string hash = 1;
    string node_id = 2;
    Operation operation = 3;
    repeated string dependencies = 4;
}

While serving the chain: image The bug seems to be caused by google.protobuf.Value value = 2;

d-roak commented 1 week ago

fixed