File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
crates/fiber-lib/src/store/sample Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,11 @@ impl ChannelActorState {
127127 pending_notify_settle_tlcs : vec ! [ ] ,
128128 ephemeral_config : Default :: default ( ) ,
129129 private_key : None ,
130+ external_funding : false ,
131+ external_funding_lock_script : None ,
132+ unsigned_funding_tx : None ,
133+ external_funding_started_at : None ,
134+ external_funding_signed_submitted : false ,
130135 }
131136 }
132137
@@ -358,6 +363,11 @@ impl ChannelActorState {
358363 pending_notify_settle_tlcs : vec ! [ ] ,
359364 ephemeral_config : Default :: default ( ) ,
360365 private_key : None ,
366+ external_funding : true ,
367+ external_funding_lock_script : Some ( Script :: default ( ) ) ,
368+ unsigned_funding_tx : Some ( Transaction :: default ( ) ) ,
369+ external_funding_started_at : Some ( deterministic_time ( 300 ) ) ,
370+ external_funding_signed_submitted : true ,
361371 }
362372 }
363373}
You can’t perform that action at this time.
0 commit comments