Typecasted nout to number
This commit is contained in:
parent
c3582c2c09
commit
03678fb4f2
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ export function doDeleteFile(outpoint, deleteFromComputer, abandonClaim) {
|
|||
|
||||
if (fileInfo) {
|
||||
const txid = fileInfo.outpoint.slice(0, -2);
|
||||
const nout = fileInfo.outpoint.slice(-1);
|
||||
const nout = Number(fileInfo.outpoint.slice(-1));
|
||||
|
||||
dispatch(doAbandonClaim(txid, nout));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue