Automatically merged updates to draft EIP(s) 2733 (#3036)

Hi, I'm a bot! This change was automatically merged because:

 - It only modifies existing Draft or Last Call EIP(s)
 - The PR was approved or written by at least one author of each modified EIP
 - The build is passing
This commit is contained in:
lightclient 2020-10-11 11:28:43 -06:00 committed by GitHub
parent 1baf7ca05a
commit ec36396a28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,8 +83,8 @@ type Receipt = [ChildReceipt]
struct ChildReceipt { struct ChildReceipt {
status: u256, status: u256,
cumulative_gas_used: u256, cumulative_gas_used: u256,
logs_bloom: [byte; 256], logs_bloom: [u8; 256],
logs: [byte] logs: [u8]
} }
``` ```