update address-cache key prefix

This commit is contained in:
sairajzero 2023-04-19 03:03:21 +05:30
parent 6beb2ecd06
commit d42e569008

View File

@ -4,7 +4,7 @@ function Encoding(servicePrefix) {
this.servicePrefix = servicePrefix;
this.addressIndex = new Buffer('00', 'hex');
this.utxoIndex = new Buffer('01', 'hex');
this.addressCache = new Buffer('ff', 'hex');
this.addressCache = new Buffer('fe', 'hex');
}
Encoding.prototype.encodeAddressIndexKey = function(address, height, txid, index, input, timestamp) {