Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions prdoc/pr_10168.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: 'pallet-revive: make contract reverted error message more verbose'
doc:
- audience: Runtime Dev
description: Make contract reverted error message more verbose in pallet-revive
crates:
- name: pallet-revive-eth-rpc
bump: patch
2 changes: 1 addition & 1 deletion substrate/frame/revive/rpc/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub enum ClientError {
#[error(transparent)]
CodecError(#[from] codec::Error),
/// Transcact call failed.
#[error("contract reverted")]
#[error("contract reverted: {0:?}")]
TransactError(EthTransactError),
/// A decimal conversion failed.
#[error("conversion failed")]
Expand Down
Loading