Skip to content

Commit

Permalink
fix wRPC json notification format (kaspanet#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Sep 26, 2024
1 parent 4bfa392 commit 200b8ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/wrpc/server/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ impl Connection {
{
match encoding {
Encoding::Borsh => workflow_rpc::server::protocol::borsh::create_serialized_notification_message(op, msg),
Encoding::SerdeJson => workflow_rpc::server::protocol::borsh::create_serialized_notification_message(op, msg),
Encoding::SerdeJson => workflow_rpc::server::protocol::serde_json::create_serialized_notification_message(op, msg),
}
}
}
Expand Down

0 comments on commit 200b8ea

Please sign in to comment.