File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1026,7 +1026,7 @@ impl WriteOperations for EthereumBlockHandlerEntity {
1026
1026
if let Some ( filter_id) = filter_id {
1027
1027
entity. set ( "filter" , filter_id) ;
1028
1028
}
1029
- entity. set ( "data " , String :: from ( self . input ) ) ;
1029
+ entity. set ( "input " , String :: from ( self . input ) ) ;
1030
1030
ops. add ( Self :: TYPENAME , id. to_owned ( ) , entity) ;
1031
1031
}
1032
1032
}
@@ -1128,6 +1128,7 @@ impl FromStr for EthereumBlockHandlerData {
1128
1128
1129
1129
fn from_str ( s : & str ) -> Result < EthereumBlockHandlerData , Error > {
1130
1130
match s {
1131
+ "FullBlockWithReceipts" => Ok ( EthereumBlockHandlerData :: FullBlockWithReceipts ) ,
1131
1132
"FullBlock" => Ok ( EthereumBlockHandlerData :: FullBlock ) ,
1132
1133
"Block" => Ok ( EthereumBlockHandlerData :: Block ) ,
1133
1134
_ => Err ( format_err ! (
You can’t perform that action at this time.
0 commit comments