File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -182,12 +182,7 @@ export class WalletV5 implements Contract {
182182 }
183183
184184 async sendExternalSignedMessage ( provider : ContractProvider , body : Cell ) {
185- await provider . external (
186- beginCell ( )
187- // .storeUint(Opcodes.auth_signed, 32) // Is signed inside message
188- . storeSlice ( body . beginParse ( ) )
189- . endCell ( )
190- ) ;
185+ await provider . external ( body ) ;
191186 }
192187
193188 async sendExternal ( provider : ContractProvider , body : Cell ) {
@@ -242,7 +237,7 @@ export class WalletV5 implements Contract {
242237 ) ;
243238
244239 return dict . keys ( ) . map ( key => {
245- const wc = 0n ;
240+ const wc = this . address . workChain ;
246241 const addressHex = key ;
247242 return Address . parseRaw ( `${ wc } :${ addressHex . toString ( 16 ) . padStart ( 64 , '0' ) } ` ) ;
248243 } ) ;
You can’t perform that action at this time.
0 commit comments