We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e1bc74 commit 06da0b5Copy full SHA for 06da0b5
src/tasks/submit.rs
@@ -113,7 +113,7 @@ impl SubmitTask {
113
ru_chain_id,
114
gas_limit: U256::from(self.config.rollup_block_gas_limit),
115
ru_reward_address: self.config.builder_rewards_address,
116
- contents: contents.contents_hash(),
+ contents: *contents.contents_hash(),
117
})
118
}
119
@@ -156,7 +156,7 @@ impl SubmitTask {
156
rollupChainId: U256::from(self.config.ru_chain_id),
157
gasLimit: resp.req.gas_limit,
158
rewardAddress: resp.req.ru_reward_address,
159
- blockDataHash: in_progress.contents_hash(),
+ blockDataHash: *in_progress.contents_hash(),
160
};
161
162
let fills = vec![]; // NB: ignored until fills are implemented
0 commit comments