Skip to content

Commit 62bba4d

Browse files
committed
lightningd: fix name of chainmoves journal entry
``` lightningd: FATAL SIGNAL 6 (version v25.09rc1-1-ga00ed81) 0x5c9e848ca050 send_backtrace common/daemon.c:33 0x5c9e848ca249 crashdump common/daemon.c:78 0x7f451664532f ??? ./signal/../sysdeps/unix/sysv/linux/x86_64/libc_sigaction.c:0 0x7f451669eb2c __pthread_kill_implementation ./nptl/pthread_kill.c:44 0x7f451669eb2c __pthread_kill_internal ./nptl/pthread_kill.c:78 0x7f451669eb2c __GI___pthread_kill ./nptl/pthread_kill.c:89 0x7f451664527d __GI_raise ../sysdeps/posix/raise.c:26 0x7f45166288fe __GI_abort ./stdlib/abort.c:79 0x5c9e84893ac3 migrate_from_account_db wallet/account_migration.c:500 0x5c9e848943f7 db_migrate wallet/db.c:1139 ... #5 0x0000555555615ac4 in migrate_from_account_db (ld=0x555555999238, db=0x55555599b158) at wallet/account_migration.c:500 500 abort(); (gdb) p ev->tag $1 = 0x555555a4fbb8 "journal_entry" ``` Signed-off-by: Rusty Russell <[email protected]>
1 parent a00ed81 commit 62bba4d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

common/coin_mvt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static const char *mvt_tags[] = {
3434
"channel_proposed",
3535
"splice",
3636
"penalty_adj",
37-
"journal",
37+
"journal_entry",
3838
"foreign",
3939
};
4040

contrib/msggen/msggen/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16855,7 +16855,7 @@
1685516855
"lease_fee",
1685616856
"channel_proposed",
1685716857
"penalty_adj",
16858-
"journal"
16858+
"journal_entry"
1685916859
],
1686016860
"description": [
1686116861
"A set of one or more tags defining the nature of the change"

doc/schemas/listchannelmoves.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"lease_fee",
104104
"channel_proposed",
105105
"penalty_adj",
106-
"journal"
106+
"journal_entry"
107107
],
108108
"description": [
109109
"A set of one or more tags defining the nature of the change"

0 commit comments

Comments
 (0)