Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getaddressinfo "labels" field #124

Open
justinmoon opened this issue Jul 31, 2020 · 1 comment
Open

getaddressinfo "labels" field #124

justinmoon opened this issue Jul 31, 2020 · 1 comment

Comments

@justinmoon
Copy link
Contributor

It seems like right now this field contains mixed content:

  "labels" : [                      (json array) Array of labels associated with the address. Currently limited to one label but returned
                                    as an array to keep the API stable if multiple labels are enabled in the future.
    "str",                          (string) The label name. Defaults to "".
    {                               (json object) label data, DEPRECATED, will be removed in 0.21. To re-enable, launch bitcoind with `-deprecatedrpc=labelspurpose`
      "name" : "str",               (string) The label name. Defaults to "".
      "purpose" : "str"             (string) The purpose of the associated address (send or receive).
    },
    ...
  ]

Right now my 0.20 node causes a bad response because rust-bitcoincore-rpc can't interpret the leading "string" value.

@stevenroose
Copy link
Collaborator

I think this one is quite possible using the serde untagged enum representation: https://serde.rs/enum-representations.html#untagged

#[derive(Serialize, Deserialize)]
#[serde(untagged)]
pub enum Label {
    #[serde(default)]
    Name(String),
    #[deprecated(note = "will be removed in Bitcoin Core v0.21")]
    Info {
        name: String,
        purpose: String,
    },
}

Or something.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants