We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b3909f commit 8f06e81Copy full SHA for 8f06e81
subprojects/gdk_rust/gdk_electrum/src/lib.rs
@@ -1108,8 +1108,9 @@ impl ElectrumSession {
1108
}
1109
1110
pub fn get_available_currencies(&self) -> Result<Value, Error> {
1111
- Ok(json!({ "all": [ "USD" ], "per_exchange": { "BITFINEX": [ "USD" ] } }))
1112
- // TODO implement
+ // TODO: use blockstream endpoint listing all available currencies when
+ // it'll be available.
1113
+ Ok(json!({ "all": [ "USD" ], "per_exchange": { "Blockstream": [ "USD" ] } }))
1114
1115
1116
pub fn get_unspent_outputs(&self, opt: &GetUnspentOpt) -> Result<GetUnspentOutputs, Error> {
0 commit comments