We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112279a commit 92b4e6eCopy full SHA for 92b4e6e
src/models.rs
@@ -464,12 +464,7 @@ pub fn make_raw_message(raw: ton_types::Cell) -> JsRawMessage {
464
ton_block::CommonMsgInfo::ExtOutMsgInfo(header) => {
465
let dst = match header.dst.clone() {
466
MsgAddressExt::AddrNone => None,
467
- MsgAddressExt::AddrExtern(addr) => Some(
468
- addr.external_address
469
- .as_hex_string()
470
- .drain(..addr.len.as_u32() as usize)
471
- .collect(),
472
- ),
+ MsgAddressExt::AddrExtern(addr) => Some(addr.external_address.as_hex_string()),
473
};
474
MessageCommon {
475
src: match &header.src {
0 commit comments