Added migration method. #3
No reviewers
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbryschema.go#3
Loading…
Reference in a new issue
No description provided.
Delete branch "add_migration"
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?
Please add some tests for the json migration (success and failure cases). Otherwise LGTM
@ -109,7 +111,46 @@ func DecodeClaimJSON(claimJSON string, blockchainName string) (*ClaimHelper, err
if err != nil {
return nil, err
DRY - This through line 122 can just call
DecodeClaimBytes
This is somewhat outside the scope of this PR, but could you please import the protobuf code from https://github.com/lbryio/types/tree/master/go and delete the duplicated proto files here?