Skip to content

Commit

Permalink
put checkpoint number in checkpoint transaction message
Browse files Browse the repository at this point in the history
  • Loading branch information
sdbondi committed Jul 6, 2022
1 parent dcc0856 commit d790633
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ impl wallet_server::Wallet for WalletGrpcServer {
.await
.map_err(|e| Status::internal(e.to_string()))?;

let message = format!("Sidechain state checkpoint for {}", contract_id);
let message = format!("Checkpoint #{} for {}", checkpoint_number, contract_id);
transaction_service
.submit_transaction(tx_id, transaction, 10.into(), message)
.await
Expand Down

0 comments on commit d790633

Please sign in to comment.