Fix indents + references + lawyer changed to mediator
This commit is contained in:
parent
d7cbbb553b
commit
a103e48444
2 changed files with 43 additions and 38 deletions
|
@ -117,8 +117,8 @@ Some examples interact (via HTTPS) with a 3rd Party Blockchain Provider (3PBP).
|
|||
- [Create (and broadcast via 3PBP) a Transaction where Alice can redeem the output after the expiry (in the future) (simple CHECKSEQUENCEVERIFY)](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/csv.js#L72)
|
||||
- [Create (but fail to broadcast via 3PBP) a Transaction where Alice attempts to redeem before the expiry (simple CHECKSEQUENCEVERIFY)](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/csv.js#L131)
|
||||
- [Create (and broadcast via 3PBP) a Transaction where Bob and Charles can send (complex CHECKSEQUENCEVERIFY)](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/csv.js#L177)
|
||||
- [Create (and broadcast via 3PBP) a Transaction where Alice (lawyer) and Bob can send after 2 blocks (complex CHECKSEQUENCEVERIFY)](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/csv.js#L234)
|
||||
- [Create (and broadcast via 3PBP) a Transaction where Alice (lawyer) can send after 5 blocks (complex CHECKSEQUENCEVERIFY)](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/csv.js#L296)
|
||||
- [Create (and broadcast via 3PBP) a Transaction where Alice (mediator) and Bob can send after 2 blocks (complex CHECKSEQUENCEVERIFY)](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/csv.js#L234)
|
||||
- [Create (and broadcast via 3PBP) a Transaction where Alice (mediator) can send after 5 blocks (complex CHECKSEQUENCEVERIFY)](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/csv.js#L296)
|
||||
- [Recover a private key from duplicate R values](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/crypto.js#L14)
|
||||
- [Recover a BIP32 parent private key from the parent public key, and a derived, non-hardened child private key](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/crypto.js#L68)
|
||||
- [Generate a single-key stealth address](https://github.com/bitcoinjs/bitcoinjs-lib/blob/master/test/integration/stealth.js#L72)
|
||||
|
|
|
@ -22,26 +22,30 @@ describe('bitcoinjs-lib (transactions w/ CSV)', function () {
|
|||
// IF MTP (from when confirmed) > seconds, aQ can redeem
|
||||
function csvCheckSigOutput (aQ, bQ, sequence) {
|
||||
return bitcoin.script.compile([
|
||||
/* eslint-disable indent */
|
||||
bitcoin.opcodes.OP_IF,
|
||||
bitcoin.script.number.encode(sequence),
|
||||
bitcoin.opcodes.OP_CHECKSEQUENCEVERIFY,
|
||||
bitcoin.opcodes.OP_DROP,
|
||||
|
||||
bitcoin.opcodes.OP_ELSE,
|
||||
bQ.publicKey,
|
||||
bitcoin.opcodes.OP_CHECKSIGVERIFY,
|
||||
bitcoin.opcodes.OP_ENDIF,
|
||||
|
||||
aQ.publicKey,
|
||||
bitcoin.opcodes.OP_CHECKSIG
|
||||
/* eslint-enable indent */
|
||||
])
|
||||
}
|
||||
|
||||
// 2 of 3 multisig of bQ, cQ, dQ, but after sequence1 time,
|
||||
// aQ can allow the multisig to become 1 of 3.
|
||||
// But after sequence2 time, aQ can sign for the output all by themself.
|
||||
// 2 of 3 multisig of bQ, cQ, dQ,
|
||||
// but after sequence1 time, aQ can allow the multisig to become 1 of 3.
|
||||
// but after sequence2 time, aQ can sign for the output all by themself.
|
||||
// Ref: https://github.com/bitcoinbook/bitcoinbook/blob/f8b883dcd4e3d1b9adf40fed59b7e898fbd9241f/ch07.asciidoc#complex-script-example
|
||||
// Note: bitcoinjs-lib will not offer specific support for problems with
|
||||
// advanced script usages such as below. Use at your own risk.
|
||||
function complexCsvOutput (aQ, bQ, cQ, dQ, sequence1, sequence2) {
|
||||
return bitcoin.script.compile([
|
||||
/* eslint-disable indent */
|
||||
bitcoin.opcodes.OP_IF,
|
||||
bitcoin.opcodes.OP_IF,
|
||||
bitcoin.opcodes.OP_2,
|
||||
|
@ -65,6 +69,7 @@ describe('bitcoinjs-lib (transactions w/ CSV)', function () {
|
|||
aQ.publicKey,
|
||||
bitcoin.opcodes.OP_CHECKSIG,
|
||||
bitcoin.opcodes.OP_ENDIF
|
||||
/* eslint-enable indent */
|
||||
])
|
||||
}
|
||||
|
||||
|
@ -230,8 +235,8 @@ describe('bitcoinjs-lib (transactions w/ CSV)', function () {
|
|||
})
|
||||
})
|
||||
|
||||
// Check first combination of complex CSV, lawyer + 1 of 3 after 2 blocks
|
||||
it('can create (and broadcast via 3PBP) a Transaction where Alice (lawyer) and Bob can send after 2 blocks (complex CHECKSEQUENCEVERIFY)', function (done) {
|
||||
// Check first combination of complex CSV, mediator + 1 of 3 after 2 blocks
|
||||
it('can create (and broadcast via 3PBP) a Transaction where Alice (mediator) and Bob can send after 2 blocks (complex CHECKSEQUENCEVERIFY)', function (done) {
|
||||
regtestUtils.height(function (err, height) {
|
||||
if (err) return done(err)
|
||||
|
||||
|
@ -254,7 +259,7 @@ describe('bitcoinjs-lib (transactions w/ CSV)', function () {
|
|||
txb.addInput(unspent.txId, unspent.vout, sequence1) // Set sequence1 for input
|
||||
txb.addOutput(regtestUtils.RANDOM_ADDRESS, 7e4)
|
||||
|
||||
// OP_0 {Bob sig} {Alice lawyer sig} OP_FALSE OP_TRUE
|
||||
// OP_0 {Bob sig} {Alice mediator sig} OP_FALSE OP_TRUE
|
||||
const tx = txb.buildIncomplete()
|
||||
const signatureHash = tx.hashForSignature(0, p2sh.redeem.output, hashType)
|
||||
const redeemScriptSig = bitcoin.payments.p2sh({
|
||||
|
@ -292,8 +297,8 @@ describe('bitcoinjs-lib (transactions w/ CSV)', function () {
|
|||
})
|
||||
})
|
||||
|
||||
// Check first combination of complex CSV, lawyer after 5 blocks
|
||||
it('can create (and broadcast via 3PBP) a Transaction where Alice (lawyer) can send after 5 blocks (complex CHECKSEQUENCEVERIFY)', function (done) {
|
||||
// Check first combination of complex CSV, mediator after 5 blocks
|
||||
it('can create (and broadcast via 3PBP) a Transaction where Alice (mediator) can send after 5 blocks (complex CHECKSEQUENCEVERIFY)', function (done) {
|
||||
regtestUtils.height(function (err, height) {
|
||||
if (err) return done(err)
|
||||
|
||||
|
@ -316,7 +321,7 @@ describe('bitcoinjs-lib (transactions w/ CSV)', function () {
|
|||
txb.addInput(unspent.txId, unspent.vout, sequence2) // Set sequence2 for input
|
||||
txb.addOutput(regtestUtils.RANDOM_ADDRESS, 7e4)
|
||||
|
||||
// {Alice lawyer sig} OP_FALSE
|
||||
// {Alice mediator sig} OP_FALSE
|
||||
const tx = txb.buildIncomplete()
|
||||
const signatureHash = tx.hashForSignature(0, p2sh.redeem.output, hashType)
|
||||
const redeemScriptSig = bitcoin.payments.p2sh({
|
||||
|
|
Loading…
Add table
Reference in a new issue