Skip to content

Commit 76c523a

Browse files
committed
chore(ucs01-relay): clean up existing pfm events
1 parent ce251fd commit 76c523a

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

cosmwasm/ucs01-relay/src/protocol.rs

+10-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ use protos::{
1010
use sha2::{Digest, Sha256};
1111
use token_factory_api::TokenFactoryMsg;
1212
use ucs01_relay_api::{
13-
middleware::{InFlightPfmPacket, Memo, MiddlewareError, PacketForward, PacketForwardError},
13+
middleware::{
14+
InFlightPfmPacket, Memo, MiddlewareError, PacketForward, PacketForwardError,
15+
PFM_ERROR_EVENT,
16+
},
1417
protocol::{TransferProtocol, ATTR_ERROR, ATTR_SUCCESS, IBC_SEND_ID},
1518
types::{
1619
make_foreign_denom, DenomOrigin, EncodingError, GenericAck, Ics20Ack, Ics20Packet,
@@ -554,7 +557,7 @@ impl<'a> TransferProtocol for Ics20Protocol<'a> {
554557
return IbcReceiveResponse::new(
555558
Binary::try_from(Self::ack_failure(e.to_string())).expect("impossible"),
556559
)
557-
.add_event(Event::new("forward_err").add_attribute("error", e.to_string()))
560+
.add_event(Event::new(PFM_ERROR_EVENT).add_attribute("error", e.to_string()))
558561
}
559562
};
560563

@@ -581,7 +584,8 @@ impl<'a> TransferProtocol for Ics20Protocol<'a> {
581584

582585
// TODO: persist full memo
583586
let memo = match forward.next {
584-
Some(next) => serde_json_wasm::to_string(&Memo::Forward { forward: *next }).unwrap(),
587+
Some(next) => serde_json_wasm::to_string(&Memo::Forward { forward: *next })
588+
.expect("can convert pfm memo to json string"),
585589
None => "".to_owned(),
586590
};
587591

@@ -920,7 +924,7 @@ impl<'a> TransferProtocol for Ucs01Protocol<'a> {
920924
return IbcReceiveResponse::new(
921925
Binary::try_from(Self::ack_failure(e.to_string())).expect("impossible"),
922926
)
923-
.add_event(Event::new("forward_err").add_attribute("error", e.to_string()))
927+
.add_event(Event::new(PFM_ERROR_EVENT).add_attribute("error", e.to_string()))
924928
}
925929
};
926930

@@ -947,7 +951,8 @@ impl<'a> TransferProtocol for Ucs01Protocol<'a> {
947951

948952
// TODO: persist full memo
949953
let memo = match forward.next {
950-
Some(next) => serde_json_wasm::to_string(&Memo::Forward { forward: *next }).unwrap(),
954+
Some(next) => serde_json_wasm::to_string(&Memo::Forward { forward: *next })
955+
.expect("can convert pfm memo to json string"),
951956
None => "".to_owned(),
952957
};
953958

0 commit comments

Comments
 (0)