Null auction in laconic cns authority whois laconic
#18
Labels
No Label
bug
documentation
duplicate
enhancement
good first issue
help wanted
in progress
invalid
question
wontfix
Copied from Github
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cerc-io/delete-me#18
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
From Zach:
This works:
laconic cns authority reserve laconic
but:
laconic cns authority whois laconic
only provides a fraction of what was expected in the READMEvs
The auction model is unexpectedly empty.
laconic cns auction
only has two subcommands,bid
andget
so how do we create an auction?After speaking with @ABastionOfSanity and learning that the unit test that fails in https://github.com/cerc-io/laconic-sdk/issues/7 is getting back the CID of an empty JSON, I am starting to suspect this could be the same issue due to changes to the record types in laconicd that were not reflected here. The type mismatch causes the gRPC handler function to fail to decode the record (or in this case, a sub-record) and instead return empty JSON.
For clarification, the failing unit test mentioned above was getting back a incorrectly encoded CID, but not the CID for empty JSON. Data over the wire was correct.
To create auction with reserveName the paramater registry.params.authority_auction_enabled must be true. This is false by default and set true only when we use
TEST_AUCTION_ENABLED=true ./init.sh
instead of./init.sh
while starting the chain.So to get auction with
laconic cns authority whois laconic
useTEST_AUCTION_ENABLED=true ./init.sh
to start laconicd.