File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ pub type CheckpointSignerLoader =
3535 Box < dyn Fn ( & Env , & str , & str ) -> Result < Vec < Box < dyn CheckpointSigner > > > > ;
3636
3737#[ durable_object]
38- struct CtLogSequencer ( Sequencer < StaticCTPendingLogEntry > ) ;
38+ struct StaticCTSequencer ( Sequencer < StaticCTPendingLogEntry > ) ;
3939
4040#[ durable_object]
41- impl DurableObject for CtLogSequencer {
41+ impl DurableObject for StaticCTSequencer {
4242 fn new ( state : State , env : Env ) -> Self {
4343 // Need to define how we load our signing keys from the environment. This closure has type
4444 // CheckpointSignerLoader
@@ -59,7 +59,7 @@ impl DurableObject for CtLogSequencer {
5959 Ok ( out)
6060 } ;
6161
62- CtLogSequencer ( Sequencer :: new ( state, env, Box :: new ( load_signers) ) )
62+ StaticCTSequencer ( Sequencer :: new ( state, env, Box :: new ( load_signers) ) )
6363 }
6464
6565 async fn fetch ( & mut self , req : Request ) -> Result < Response > {
You can’t perform that action at this time.
0 commit comments