Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ ResultWrapper<Hash256> rbuilder_calculateStateRoot(BlockParameter block,
IDictionary<Address, AccountChange> accountDiff);

[JsonRpcMethod(IsImplemented = true,
ResultCanBeNull = true,
Description = "Get account data",
IsSharable = true)]
ResultWrapper<AccountState?> rbuilder_getAccount(Address address, BlockParameter block);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public interface IDebugRpcModule : IRpcModule
[JsonRpcMethod(Description = "Get Raw Header format.")]
ResultWrapper<ArrayPoolList<byte>> debug_getRawHeader(BlockParameter blockParameter);

[JsonRpcMethod(Description = "Get Raw Transaction format.")]
[JsonRpcMethod(Description = "Get Raw Transaction format.", ResultCanBeNull = true)]
ResultWrapper<ArrayPoolList<byte>> debug_getRawTransaction(Hash256 transactionHash);

[JsonRpcMethod(Description = "Retrieves Nethermind Sync Stage, With extra Metadata")]
Expand Down
Loading
Loading