Skip to content

Commit 06da0b5

Browse files
committed
fix pointer changes
1 parent 9e1bc74 commit 06da0b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tasks/submit.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl SubmitTask {
113113
ru_chain_id,
114114
gas_limit: U256::from(self.config.rollup_block_gas_limit),
115115
ru_reward_address: self.config.builder_rewards_address,
116-
contents: contents.contents_hash(),
116+
contents: *contents.contents_hash(),
117117
})
118118
}
119119

@@ -156,7 +156,7 @@ impl SubmitTask {
156156
rollupChainId: U256::from(self.config.ru_chain_id),
157157
gasLimit: resp.req.gas_limit,
158158
rewardAddress: resp.req.ru_reward_address,
159-
blockDataHash: in_progress.contents_hash(),
159+
blockDataHash: *in_progress.contents_hash(),
160160
};
161161

162162
let fills = vec![]; // NB: ignored until fills are implemented

0 commit comments

Comments
 (0)