We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0557f73 commit 2eae99dCopy full SHA for 2eae99d
crates/phactory/src/prpc_service.rs
@@ -2045,7 +2045,7 @@ impl<Platform: pal::Platform + Serialize + DeserializeOwned> PhactoryApi for Rpc
2045
let genesis_hash = hex::encode(runtime_state.genesis_block_hash);
2046
let mr_to = hex::encode(&request.measurement);
2047
let mr_from = hex::encode(my_measurement()?);
2048
- let signed_message = format!("Allow pRuntime to handover from 0x{mr_from} to 0x{mr_to} on chain of genesis 0x{genesis_hash}").into_bytes();
+ let signed_message = format!("Allow pRuntime to handover\n from: 0x{mr_from}\n to: 0x{mr_to}\n genesis: 0x{genesis_hash}").into_bytes();
2049
debug!("Signed message: {:?}", hex::encode(&signed_message));
2050
let mut signers = std::collections::BTreeSet::new();
2051
for sig in &request.signatures {
0 commit comments