You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
After using protobuf to translate dex.proto into dex.pb.h, it doesnt contain the member add_outputs(). Any ideas on what I could be doing wrong?
auto order = NewOrder();
// Build a trade
auto output = order.add_outputs();
output->set_address(toKeyhash.data(), toKeyhash.size());
auto outputCoin = output->add_coins();
outputCoin->set_denom("BNB");
outputCoin->set_amount(1'001'000'000);
It's also showing toKeyhash.data() is undefined.
The text was updated successfully, but these errors were encountered:
After using protobuf to translate dex.proto into dex.pb.h, it doesnt contain the member add_outputs(). Any ideas on what I could be doing wrong?
It's also showing toKeyhash.data() is undefined.
The text was updated successfully, but these errors were encountered: