@@ -18,18 +18,18 @@ const size_t c_alignof_rawElementsTransaction = alignof(rawElementsTransaction);
18
18
const size_t c_alignof_rawElementsTapEnv = alignof(rawElementsTapEnv );
19
19
const size_t c_alignof_txEnv = alignof(txEnv );
20
20
21
- void c_set_rawBuffer (rawElementsBuffer * result , const unsigned char * buf , unsigned int len )
21
+ void c_set_rawElementsBuffer (rawElementsBuffer * result , const unsigned char * buf , unsigned int len )
22
22
{
23
23
* result = (rawElementsBuffer ){.buf = buf , .len = len };
24
24
}
25
25
26
- void c_set_rawOutput (rawElementsOutput * result , const unsigned char * asset , const unsigned char * value , const unsigned char * nonce , const rawElementsBuffer * scriptPubKey ,
26
+ void c_set_rawElementsOutput (rawElementsOutput * result , const unsigned char * asset , const unsigned char * value , const unsigned char * nonce , const rawElementsBuffer * scriptPubKey ,
27
27
const rawElementsBuffer * surjectionProof , const rawElementsBuffer * rangeProof )
28
28
{
29
29
* result = (rawElementsOutput ){.asset = asset , .value = value , .nonce = nonce , .scriptPubKey = * scriptPubKey , .surjectionProof = * surjectionProof , .rangeProof = * rangeProof };
30
30
}
31
31
32
- void c_set_rawInput (rawElementsInput * result , const rawElementsBuffer * annex , const unsigned char * pegin , const rawElementsBuffer * scriptSig ,
32
+ void c_set_rawElementsInput (rawElementsInput * result , const rawElementsBuffer * annex , const unsigned char * pegin , const rawElementsBuffer * scriptSig ,
33
33
const unsigned char * prevTxid , unsigned int prevIx ,
34
34
const unsigned char * asset , const unsigned char * value , const rawElementsBuffer * scriptPubKey ,
35
35
unsigned int sequence ,
@@ -39,7 +39,7 @@ void c_set_rawInput(rawElementsInput *result, const rawElementsBuffer *annex, co
39
39
* result = (rawElementsInput ){.annex = annex , .scriptSig = * scriptSig , .prevTxid = prevTxid , .pegin = pegin , .issuance = {.blindingNonce = blindingNonce , .assetEntropy = assetEntropy , .amount = amount , .inflationKeys = inflationKeys , .amountRangePrf = * amountRangePrf , .inflationKeysRangePrf = * inflationKeysRangePrf }, .txo = {.asset = asset , .value = value , .scriptPubKey = * scriptPubKey }, .prevIx = prevIx , .sequence = sequence };
40
40
}
41
41
42
- void c_set_rawTransaction (rawElementsTransaction * result , unsigned int version ,
42
+ void c_set_rawElementsTransaction (rawElementsTransaction * result , unsigned int version ,
43
43
const unsigned char * txid ,
44
44
const rawElementsInput * input , unsigned int numInputs ,
45
45
const rawElementsOutput * output , unsigned int numOutputs ,
@@ -56,7 +56,7 @@ void c_set_rawTransaction(rawElementsTransaction *result, unsigned int version,
56
56
};
57
57
}
58
58
59
- void c_set_rawTapEnv (rawElementsTapEnv * result , const unsigned char * controlBlock , unsigned char pathLen , const unsigned char * scriptCMR )
59
+ void c_set_rawElementsTapEnv (rawElementsTapEnv * result , const unsigned char * controlBlock , unsigned char pathLen , const unsigned char * scriptCMR )
60
60
{
61
61
* result = (rawElementsTapEnv ){.controlBlock = controlBlock , .pathLen = pathLen , .scriptCMR = scriptCMR };
62
62
}
0 commit comments