Remove VSize, can get from Transaction

This commit is contained in:
junderw 2019-08-27 10:06:43 +09:00
parent 139197e545
commit 14d10c74a5
No known key found for this signature in database
GPG key ID: B256185D3A971908
4 changed files with 1 additions and 35 deletions

View file

@ -154,11 +154,6 @@ describe(`Psbt`, () => {
const f1 = psbt6.getFee()
const f2 = psbt6.getFee()
assert.strictEqual(f1, f2)
const psbt7 = Psbt.fromBase64(f.psbt)
const vs1 = psbt7.getVSize()
const vs2 = psbt7.getVSize()
assert.strictEqual(vs1, vs2)
})
})
})