txdb: typo.
This commit is contained in:
parent
ef44dcd6cb
commit
2af685ec1f
@ -1310,7 +1310,7 @@ TXDB.prototype.getLocked = function getLocked() {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
TXDB.prototype.getHistoryHashes = function getHistoryHashes(account) {
|
TXDB.prototype.getHistoryHashes = function getHistoryHashes(account) {
|
||||||
if (acount != null) {
|
if (account != null) {
|
||||||
return this.keys({
|
return this.keys({
|
||||||
gte: layout.T(account, constants.NULL_HASH),
|
gte: layout.T(account, constants.NULL_HASH),
|
||||||
lte: layout.T(account, constants.HIGH_HASH),
|
lte: layout.T(account, constants.HIGH_HASH),
|
||||||
@ -1335,7 +1335,7 @@ TXDB.prototype.getHistoryHashes = function getHistoryHashes(account) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
TXDB.prototype.getUnconfirmedHashes = function getUnconfirmedHashes(account) {
|
TXDB.prototype.getUnconfirmedHashes = function getUnconfirmedHashes(account) {
|
||||||
if (acount != null) {
|
if (account != null) {
|
||||||
return this.keys({
|
return this.keys({
|
||||||
gte: layout.P(account, constants.NULL_HASH),
|
gte: layout.P(account, constants.NULL_HASH),
|
||||||
lte: layout.P(account, constants.HIGH_HASH),
|
lte: layout.P(account, constants.HIGH_HASH),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user