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
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.
The text was updated successfully, but these errors were encountered:
#[derive(Serialize,Deserialize)]#[serde(untagged)]pubenumLabel{#[serde(default)]Name(String),#[deprecated(note = "will be removed in Bitcoin Core v0.21")]Info{name:String,purpose:String,},}
It seems like right now this field contains mixed content:
Right now my 0.20 node causes a bad response because
rust-bitcoincore-rpc
can't interpret the leading "string" value.The text was updated successfully, but these errors were encountered: