Fix bug for payment read
This commit is contained in:
parent
8130856d8f
commit
29a90b8614
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ var blockInterval = setInterval( function() {
|
||||||
exptime = txData.blocktime + 24*3600;
|
exptime = txData.blocktime + 24*3600;
|
||||||
} else if (txData.amount >= 0.025 && txData.amount < 0.1) {
|
} else if (txData.amount >= 0.025 && txData.amount < 0.1) {
|
||||||
exptime = txData.blocktime + 7*24*3600;
|
exptime = txData.blocktime + 7*24*3600;
|
||||||
} else if (txData.mount >= 0.1) {
|
} else if (txData.amount >= 0.1) {
|
||||||
exptime = txData.blocktime + 4*7*24*3600;
|
exptime = txData.blocktime + 4*7*24*3600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue