@@ -191,7 +191,7 @@ function _serializeLegacy(tx: Transaction, sig?: Signature): string {
191
191
] ;
192
192
193
193
let chainId = BN_0 ;
194
- if ( tx . chainId != null ) {
194
+ if ( tx . chainId != BN_0 ) {
195
195
// A chainId was provided; if non-zero we'll use EIP-155
196
196
chainId = getBigInt ( tx . chainId , "tx.chainId" ) ;
197
197
@@ -200,9 +200,9 @@ function _serializeLegacy(tx: Transaction, sig?: Signature): string {
200
200
assertArgument ( ! sig || sig . networkV == null || sig . legacyChainId === chainId ,
201
201
"tx.chainId/sig.v mismatch" , "sig" , sig ) ;
202
202
203
- } else if ( sig ) {
204
- // No chainId provided , but the signature is signing with EIP-155; derive chainId
205
- const legacy = sig . legacyChainId ;
203
+ } else if ( tx . signature ) {
204
+ // No explicit chainId , but EIP-155 have a derived implicit chainId
205
+ const legacy = tx . signature . legacyChainId ;
206
206
if ( legacy != null ) { chainId = legacy ; }
207
207
}
208
208
@@ -218,14 +218,19 @@ function _serializeLegacy(tx: Transaction, sig?: Signature): string {
218
218
return encodeRlp ( fields ) ;
219
219
}
220
220
221
- // We pushed a chainId and null r, s on for hashing only; remove those
221
+ // @TODO : We should probably check that tx.signature, chainId, and sig
222
+ // match but that logic could break existing code, so schedule
223
+ // this for the next major bump.
224
+
225
+ // Compute the EIP-155 v
222
226
let v = BigInt ( 27 + sig . yParity ) ;
223
227
if ( chainId !== BN_0 ) {
224
228
v = Signature . getChainIdV ( chainId , sig . v ) ;
225
229
} else if ( BigInt ( sig . v ) !== v ) {
226
230
assertArgument ( false , "tx.chainId/sig.v mismatch" , "sig" , sig ) ;
227
231
}
228
232
233
+ // Add the signature
229
234
fields . push ( toBeArray ( v ) ) ;
230
235
fields . push ( toBeArray ( sig . r ) ) ;
231
236
fields . push ( toBeArray ( sig . s ) ) ;
0 commit comments