zcash-redux
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -16,2 +16,4 @@ import zClient from './client'; | ||
const client = new zClient(); // eslint-disable-line | ||
export const setAuthConfig = config => ({ | ||
@@ -47,3 +49,3 @@ type: SET_AUTH_CONFIG, | ||
return zClient.z_gettotalbalance(address).then(response => dispatch(zGetTotalBalanceSuccess(response))).catch(err => dispatch(zGetTotalBalanceError(err))); | ||
return client.z_gettotalbalance(address).then(response => dispatch(zGetTotalBalanceSuccess(response))).catch(err => dispatch(zGetTotalBalanceError(err))); | ||
}; | ||
@@ -67,3 +69,3 @@ | ||
return zClient.z_listaddresses().then(response => dispatch(zListAddressesSuccess(response))).catch(err => dispatch(zListAddressesError(err))); | ||
return client.z_listaddresses().then(response => dispatch(zListAddressesSuccess(response))).catch(err => dispatch(zListAddressesError(err))); | ||
}; | ||
@@ -87,3 +89,3 @@ | ||
return zClient.z_listtransactions().then(response => dispatch(zListTransactionsSuccess(response))).catch(err => dispatch(zListTransactionsError(err))); | ||
return client.z_listtransactions().then(response => dispatch(zListTransactionsSuccess(response))).catch(err => dispatch(zListTransactionsError(err))); | ||
}; | ||
@@ -90,0 +92,0 @@ |
{ | ||
"name": "zcash-redux", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
186
16554