1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
2018-01-07 01:23:42.866 [WRN] LTND: open /root/.lnd/lnd.conf: no such file or directory
2018-01-07 01:23:42.866 [INF] LTND: Version 0.3.0-alpha
2018-01-07 01:23:42.867 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
2018-01-07 01:23:42.923 [INF] LTND: Primary chain is set to: bitcoin
2018-01-07 01:23:42.923 [INF] LTND: Initializing btcd backed fee estimator
2018-01-07 01:23:43.672 [INF] LNWL: Opened wallet
2018-01-07 01:23:44.492 [INF] LNWL: The wallet has been unlocked without a time limit
2018-01-07 01:23:44.494 [INF] LTND: LightningWallet opened
2018-01-07 01:23:44.549 [INF] LNWL: Started rescan from block 00000000002e3a9ba9fe6c5ab217cd57feab8afd69e006bced83a6dc4fc254a4 (height 1257642) for 6 addresses
2018-01-07 01:23:44.550 [DBG] FNDG: channel (af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec) with opening state 2 found
2018-01-07 01:23:44.550 [DBG] FNDG: Will announce channel 1382771111859585024 after ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) has gotten 6 confirmations
2018-01-07 01:23:44.551 [INF] RPCS: RPC server listening on 127.0.0.1:10009
2018-01-07 01:23:44.551 [INF] RPCS: gRPC proxy started at localhost:8080
2018-01-07 01:23:44.571 [INF] LTND: Waiting for chain backend to finish sync, start_height=1257677
2018-01-07 01:23:44.583 [INF] LNWL: Catching up block hashes to height 1257677, this might take a while
2018-01-07 01:23:44.626 [INF] LNWL: Done catching up block hashes
2018-01-07 01:23:44.626 [INF] LNWL: Finished rescan for 6 addresses (synced to block 00000000005c29dac4a7c3e49a2add4c0819d71747d4662abe6c97b740c9d113, height 1257677)
2018-01-07 01:23:45.573 [INF] LTND: Chain backend is fully synced (end_height=1257677)!
2018-01-07 01:23:45.661 [INF] HSWC: Starting HTLC Switch
2018-01-07 01:23:45.661 [INF] NTFN: New confirmations subscription: txid=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf, numconfs=6
2018-01-07 01:23:45.662 [INF] NTFN: Dispatching 6 conf notification for ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf
2018-01-07 01:23:45.662 [INF] NTFN: New block epoch subscription
2018-01-07 01:23:45.662 [INF] FNDG: Announcing ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), short_chan_id=(*lnwire.ShortChannelID)(0xc420451760)(1257623:16:0)

2018-01-07 01:23:45.662 [INF] UTXN: Processing outputs from missed blocks. Starting with blockHeight=1257642, to current blockHeight=1257677
2018-01-07 01:23:45.662 [DBG] UTXN: Attempting to graduate outputs at height=1257643
2018-01-07 01:23:45.954 [DBG] UTXN: Attempting to graduate outputs at height=1257644
2018-01-07 01:23:45.994 [DBG] UTXN: Attempting to graduate outputs at height=1257645
2018-01-07 01:23:46.083 [DBG] UTXN: Attempting to graduate outputs at height=1257646
2018-01-07 01:23:46.127 [DBG] UTXN: Attempting to graduate outputs at height=1257647
2018-01-07 01:23:46.172 [DBG] UTXN: Attempting to graduate outputs at height=1257648
2018-01-07 01:23:46.250 [DBG] UTXN: Attempting to graduate outputs at height=1257649
2018-01-07 01:23:46.295 [DBG] UTXN: Attempting to graduate outputs at height=1257650
2018-01-07 01:23:46.337 [DBG] UTXN: Attempting to graduate outputs at height=1257651
2018-01-07 01:23:46.422 [DBG] UTXN: Attempting to graduate outputs at height=1257652
2018-01-07 01:23:46.455 [DBG] UTXN: Attempting to graduate outputs at height=1257653
2018-01-07 01:23:46.505 [DBG] UTXN: Attempting to graduate outputs at height=1257654
2018-01-07 01:23:46.572 [DBG] UTXN: Attempting to graduate outputs at height=1257655
2018-01-07 01:23:46.607 [DBG] UTXN: Attempting to graduate outputs at height=1257656
2018-01-07 01:23:46.652 [DBG] UTXN: Attempting to graduate outputs at height=1257657
2018-01-07 01:23:46.694 [DBG] UTXN: Attempting to graduate outputs at height=1257658
2018-01-07 01:23:46.747 [DBG] UTXN: Attempting to graduate outputs at height=1257659
2018-01-07 01:23:46.802 [DBG] UTXN: Attempting to graduate outputs at height=1257660
2018-01-07 01:23:47.114 [DBG] UTXN: Attempting to graduate outputs at height=1257661
2018-01-07 01:23:47.282 [DBG] UTXN: Attempting to graduate outputs at height=1257662
2018-01-07 01:23:47.445 [DBG] UTXN: Attempting to graduate outputs at height=1257663
2018-01-07 01:23:47.579 [DBG] UTXN: Attempting to graduate outputs at height=1257664
2018-01-07 01:23:47.619 [DBG] UTXN: Attempting to graduate outputs at height=1257665
2018-01-07 01:23:47.682 [DBG] UTXN: Attempting to graduate outputs at height=1257666
2018-01-07 01:23:47.722 [DBG] UTXN: Attempting to graduate outputs at height=1257667
2018-01-07 01:23:47.773 [DBG] UTXN: Attempting to graduate outputs at height=1257668
2018-01-07 01:23:47.821 [DBG] UTXN: Attempting to graduate outputs at height=1257669
2018-01-07 01:23:47.898 [DBG] UTXN: Attempting to graduate outputs at height=1257670
2018-01-07 01:23:47.956 [DBG] UTXN: Attempting to graduate outputs at height=1257671
2018-01-07 01:23:48.000 [DBG] UTXN: Attempting to graduate outputs at height=1257672
2018-01-07 01:23:48.052 [DBG] UTXN: Attempting to graduate outputs at height=1257673
2018-01-07 01:23:48.100 [DBG] UTXN: Attempting to graduate outputs at height=1257674
2018-01-07 01:23:48.168 [DBG] UTXN: Attempting to graduate outputs at height=1257675
2018-01-07 01:23:48.213 [DBG] UTXN: Attempting to graduate outputs at height=1257676
2018-01-07 01:23:48.281 [DBG] UTXN: Attempting to graduate outputs at height=1257677
2018-01-07 01:23:48.350 [INF] UTXN: UTXO Nursery is now fully synced
2018-01-07 01:23:48.351 [INF] BRAR: Retrieved 1 channels from database, watching with vigilance!
2018-01-07 01:23:48.352 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting local commitment: (*lnwallet.commitment)(0xc4201600c0)({
 height: (uint64) 8,
 isOurs: (bool) true,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc420177040)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc4201883c0)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc420177080)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2f 74 e0 31 f3 7d  46 d4 ab da b4 e5 5a f2  |../t.1.}F.....Z.|
     00000010  3c f7 cd 4f 48 b0                                 |<..OH.|
    }
   }),
   (*wire.TxOut)(0xc4201770a0)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 98 02 5c 7b 51 91  49 f3 c9 47 5d a6 ef ae  |. ..\{Q.I..G]...|
     00000010  42 fe 45 c3 a1 f1 0e 04  54 9d fd 35 b5 13 81 02  |B.E.....T..5....|
     00000020  5b 2c                                             |[,|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) (len=71 cap=71) {
  00000000  30 45 02 21 00 f9 43 5b  c1 dd 4c 99 ec 78 14 d3  |0E.!..C[..L..x..|
  00000010  cf af 26 1f 39 26 5a 76  aa 6c 45 a7 02 94 00 de  |..&.9&Zv.lE.....|
  00000020  5b 9e 8a d5 42 02 20 66  b6 91 da 6e 07 c8 c7 26  |[...B. f...n...&|
  00000030  88 d5 6a e7 5a f1 a5 10  45 09 55 83 3f 62 aa 9b  |..j.Z...E.U.?b..|
  00000040  fc cd c0 4a 55 96 be                              |...JU..|
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:23:48.353 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting remote commitment: (*lnwallet.commitment)(0xc4200a2480)({
 height: (uint64) 8,
 isOurs: (bool) false,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc420177100)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc420188420)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc420177140)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 c9 0f 83 43 fa 3e  19 9f a0 b9 9f 17 9d 66  |. ...C.>.......f|
     00000010  bc 6c 7b b5 6e 45 df 57  01 98 9a 64 d7 34 a9 35  |.l{.nE.W...d.4.5|
     00000020  03 fe                                             |..|
    }
   }),
   (*wire.TxOut)(0xc420177160)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2b 61 78 83 90 b1  be 56 c3 b5 47 63 eb 78  |..+ax....V..Gc.x|
     00000010  a3 2f 64 7a 70 e9                                 |./dzp.|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) {
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:23:48.354 [INF] NTFN: New spend subscription: utxo=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0
2018-01-07 01:23:48.355 [INF] LNWL: Close observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) active
2018-01-07 01:23:48.355 [INF] DISC: Authenticated Gossiper is starting
2018-01-07 01:23:48.355 [INF] NTFN: New block epoch subscription
2018-01-07 01:23:48.355 [DBG] BRAR: Breach observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started 
2018-01-07 01:23:48.355 [INF] CRTR: FilteredChainView starting
2018-01-07 01:23:48.355 [DBG] DISC: Skipping retransmission of channel without AuthProof: &{1382771111859585024 000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943 0xc4205efe80 0xc4205eff40 0xc42055c000 0xc42055c0c0 [0 0] <nil> ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0 0.1 BTC}
2018-01-07 01:23:48.356 [INF] DISC: Received new local channel announcement: (*lnwire.AnnounceSignatures)(0xc42016c840)({
 ChannelID: (lnwire.ChannelID) (len=32 cap=32) af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec,
 ShortChannelID: (lnwire.ShortChannelID) 1257623:16:0,
 NodeSignature: (*btcec.Signature)(0xc42025eae0)({
  R: (*big.Int)(0xc42022b5e0)(46868924128062906967152305526753186552830176388556850425997011447658387391832),
  S: (*big.Int)(0xc42022b720)(8445107959301581239599327131687407027716979939822869094385656352225042517121)
 }),
 BitcoinSignature: (*btcec.Signature)(0xc42025eb10)({
  R: (*big.Int)(0xc42022bea0)(79212262440236378301517763462481734058332308217395249962732330681357099445156),
  S: (*big.Int)(0xc42022bf40)(30041482757390933433776443319534886837858656002448715996172058646295943598861)
 })
})

2018-01-07 01:23:48.378 [DBG] DISC: Sending AnnounceSignatures for channel af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec to remote peer 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:23:48.378 [INF] SRVR: Attempting to send msgs 1 to: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:23:48.378 [ERR] SRVR: unable to send message to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, peer not found
2018-01-07 01:23:48.378 [ERR] DISC: unable to send AnnounceSignatures message to peer(03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e): unable to find peer. Will retry when online.
2018-01-07 01:23:48.385 [INF] CRTR: Filtering chain using 1 channels active
2018-01-07 01:23:48.385 [DBG] CRTR: Updating chain filter with new UTXO's: [ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0]
2018-01-07 01:23:48.385 [INF] CRTR: Prune tip for Channel Graph: height=1257642, hash=00000000002e3a9ba9fe6c5ab217cd57feab8afd69e006bced83a6dc4fc254a4
2018-01-07 01:23:48.385 [INF] CRTR: Syncing channel graph from height=1257642 (hash=00000000002e3a9ba9fe6c5ab217cd57feab8afd69e006bced83a6dc4fc254a4) to height=1257677 (hash=00000000005c29dac4a7c3e49a2add4c0819d71747d4662abe6c97b740c9d113)
2018-01-07 01:23:48.435 [INF] DISC: 1/2 of channel ann proof received for short_chan_id=1382771111859585024, waiting for other half
2018-01-07 01:23:48.462 [INF] CRTR: Block 00000000000007011a7da8e11d97d0e6394489804364e191b082d460cfb6cb1c (height=1257643) closed 0 channels
2018-01-07 01:23:48.485 [INF] CRTR: Block 00000000000004cb318077b1b7bde164e45b1fd81963bbbe1e38d3b76f79e2d8 (height=1257644) closed 0 channels
2018-01-07 01:23:48.534 [INF] CRTR: Block 00000000007012fecf20e0bab89194d7f98277fc73dca415673970a615256b44 (height=1257645) closed 0 channels
2018-01-07 01:23:48.559 [INF] CRTR: Block 000000000000061d8b72d35dcf4ac14d3c31e95155b6d776d56dbb66fca513a8 (height=1257646) closed 0 channels
2018-01-07 01:23:48.603 [INF] CRTR: Block 00000000000002fe7c5593d2d55b927f9d56c849fc178179ea6e73b92c73eac0 (height=1257647) closed 0 channels
2018-01-07 01:23:48.665 [INF] CRTR: Block 0000000000466eb29e1d3fdddc2174469b9852c5a1093ed34e539458226cc839 (height=1257648) closed 0 channels
2018-01-07 01:23:48.690 [INF] CRTR: Block 000000000000010abfa67d638e213ace7c651bf758d4971e0b5b8915123828a9 (height=1257649) closed 0 channels
2018-01-07 01:23:48.741 [INF] CRTR: Block 0000000000a363240c93f86d7191d3c6ea57c7c3ec4fe3002269d21dba154e97 (height=1257650) closed 0 channels
2018-01-07 01:23:48.763 [INF] CRTR: Block 0000000000000486beb8571aa3be4ac98932c776a0d6d42b0ac397b130d135d9 (height=1257651) closed 0 channels
2018-01-07 01:23:48.786 [INF] CRTR: Block 000000000000025d5880dc26f45b18ff359ae170e11eaa35fe6b8998668ee6c0 (height=1257652) closed 0 channels
2018-01-07 01:23:48.833 [INF] CRTR: Block 00000000000001d2d0ad82fb4f1f92c91adbe5af8eb2006561ebea4ce2654763 (height=1257653) closed 0 channels
2018-01-07 01:23:48.861 [INF] CRTR: Block 00000000000002a934e12e3ac417b5703b4e9222d4cca5c085a7993624125ccf (height=1257654) closed 0 channels
2018-01-07 01:23:48.888 [INF] CRTR: Block 00000000001cf6b7c96330e111a7ddae30acad6d3f86b822e2eabcc676ecd004 (height=1257655) closed 0 channels
2018-01-07 01:23:48.929 [INF] CRTR: Block 00000000000006a7ed26261f7fc9abb74388c8ddbbec9d7e5b417854412cd07c (height=1257656) closed 0 channels
2018-01-07 01:23:48.962 [INF] CRTR: Block 0000000000734f233583ea56d642c58b79722c1933472c9bda1c2e081fa41a1d (height=1257657) closed 0 channels
2018-01-07 01:23:48.991 [INF] CRTR: Block 0000000000444b2860d12023712bda4d3dfb47a89471859f65fb921944dbcd19 (height=1257658) closed 0 channels
2018-01-07 01:23:49.028 [INF] CRTR: Block 000000000000045209d4d4ca93a6008d6e00a966906bc7dae77855871d5e47ae (height=1257659) closed 0 channels
2018-01-07 01:23:49.063 [INF] CRTR: Block 000000000000077b73a7e230b9af077948ae17acd4f2f3e48fbc7968ab98b9cf (height=1257660) closed 0 channels
2018-01-07 01:23:49.086 [INF] CRTR: Block 00000000000006171a0513498f9eb21cb4907b819883c53b8733ed0f8851eaa6 (height=1257661) closed 0 channels
2018-01-07 01:23:49.132 [INF] CRTR: Block 00000000000001174df370b83be3f0877e50ab3d65957939feee2e118a60e36d (height=1257662) closed 0 channels
2018-01-07 01:23:49.155 [INF] CRTR: Block 00000000001071b1ba9f8d6228910eb85b026e0d30029e81dbc20c5d5bc6d1f2 (height=1257663) closed 0 channels
2018-01-07 01:23:49.178 [INF] CRTR: Block 0000000000122ca03139ecb1d22e7b2ca19d5cc454a830c6fdf97b2e9f69dd9f (height=1257664) closed 0 channels
2018-01-07 01:23:49.242 [INF] CRTR: Block 0000000000000024b4808f217fd4258c043577a26a2d95e1f4fb02cf2e4dd717 (height=1257665) closed 0 channels
2018-01-07 01:23:49.263 [INF] CRTR: Block 00000000000003798796ae56df69004645b0b1a5f1931eb4b730069a53eb9f3e (height=1257666) closed 0 channels
2018-01-07 01:23:49.298 [INF] CRTR: Block 0000000000caf51a5746ec70fce563c280cd2f891728bca54851e2b1a6a3b74d (height=1257667) closed 0 channels
2018-01-07 01:23:49.335 [INF] CRTR: Block 0000000000ce8f608dfdc355a96ad65fb1671455d1913c4077e8130c5e96acc4 (height=1257668) closed 0 channels
2018-01-07 01:23:49.376 [INF] CRTR: Block 000000000000008eecfc00061751f2a1b1c15b91fe3561d8284931e0c84732b9 (height=1257669) closed 0 channels
2018-01-07 01:23:49.417 [INF] CRTR: Block 0000000000000539a75fddce2d16903e68411805da0d15beeae8955e5ced5ce2 (height=1257670) closed 0 channels
2018-01-07 01:23:49.453 [INF] CRTR: Block 00000000eb510935e44c3c7339208280fd40daaa6b55275d95a8afcd484aa3a6 (height=1257671) closed 0 channels
2018-01-07 01:23:49.478 [INF] CRTR: Block 000000000000047fff68bcade2b64684cff20a4132f0709abaa56d5ec7aad145 (height=1257672) closed 0 channels
2018-01-07 01:23:49.507 [INF] CRTR: Block 00000000007a41f2be9075e2c40aefcc24cc10e96a9de5d63f90c8d131f4b38e (height=1257673) closed 0 channels
2018-01-07 01:23:49.555 [INF] CRTR: Block 00000000000002a4dccf293cb0116adad5b14adbcfa589312273b894560b7f66 (height=1257674) closed 0 channels
2018-01-07 01:23:49.592 [INF] CRTR: Block 00000000005cb871fd2e5d785997ee8e1a5e82081a6df89592674b5c0ec1d205 (height=1257675) closed 0 channels
2018-01-07 01:23:49.615 [INF] CRTR: Block 000000000000045e4dfac4d3138e4bb63c32de1685f99b9908b1d19da62581b0 (height=1257676) closed 0 channels
2018-01-07 01:23:49.682 [INF] CRTR: Block 00000000005c29dac4a7c3e49a2add4c0819d71747d4662abe6c97b740c9d113 (height=1257677) closed 0 channels
2018-01-07 01:23:49.683 [INF] CRTR: Graph pruning complete: 0 channels we're closed since height 1257642
2018-01-07 01:23:49.683 [DBG] SRVR: Attempting persistent connection to channel peer 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262
2018-01-07 01:23:49.683 [INF] SRVR: Auto peer bootstrapping is disabled
2018-01-07 01:23:49.683 [DBG] CMGR: Attempting to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:23:49.683 [INF] CMGR: Server listening on [::]:9735
2018-01-07 01:23:49.703 [INF] CRTR: Updated vertex data for node=03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1
2018-01-07 01:23:49.703 [DBG] FNDG: Channel with ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), short_chan_id=(*lnwire.ShortChannelID)(0xc420451760)(1257623:16:0)
 announced
2018-01-07 01:23:52.746 [DBG] CMGR: Failed to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1): dial tcp 172.17.0.5:52262: getsockopt: no route to host
2018-01-07 01:23:52.746 [DBG] CMGR: Retrying connection to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1) in 5s
2018-01-07 01:23:57.746 [DBG] CMGR: Attempting to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:23:57.747 [DBG] CMGR: Failed to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1): dial tcp 172.17.0.5:52262: getsockopt: connection refused
2018-01-07 01:23:57.747 [DBG] CMGR: Retrying connection to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1) in 10s
2018-01-07 01:24:03.905 [INF] SRVR: New inbound connection from 172.17.0.5:60296
2018-01-07 01:24:03.905 [DBG] CMGR: Canceling: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:24:03.905 [DBG] PEER: Sending Init to 172.17.0.5:60296
2018-01-07 01:24:03.905 [DBG] PEER: Received Init from 172.17.0.5:60296
2018-01-07 01:24:03.906 [DBG] PEER: Loaded 1 active channels from database with peerID(1)
2018-01-07 01:24:03.907 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting local commitment: (*lnwallet.commitment)(0xc420160600)({
 height: (uint64) 8,
 isOurs: (bool) true,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc4202d0d80)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc4206daf00)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc4202d0dc0)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2f 74 e0 31 f3 7d  46 d4 ab da b4 e5 5a f2  |../t.1.}F.....Z.|
     00000010  3c f7 cd 4f 48 b0                                 |<..OH.|
    }
   }),
   (*wire.TxOut)(0xc4202d0de0)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 98 02 5c 7b 51 91  49 f3 c9 47 5d a6 ef ae  |. ..\{Q.I..G]...|
     00000010  42 fe 45 c3 a1 f1 0e 04  54 9d fd 35 b5 13 81 02  |B.E.....T..5....|
     00000020  5b 2c                                             |[,|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) (len=71 cap=71) {
  00000000  30 45 02 21 00 f9 43 5b  c1 dd 4c 99 ec 78 14 d3  |0E.!..C[..L..x..|
  00000010  cf af 26 1f 39 26 5a 76  aa 6c 45 a7 02 94 00 de  |..&.9&Zv.lE.....|
  00000020  5b 9e 8a d5 42 02 20 66  b6 91 da 6e 07 c8 c7 26  |[...B. f...n...&|
  00000030  88 d5 6a e7 5a f1 a5 10  45 09 55 83 3f 62 aa 9b  |..j.Z...E.U.?b..|
  00000040  fc cd c0 4a 55 96 be                              |...JU..|
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:24:03.909 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting remote commitment: (*lnwallet.commitment)(0xc4201606c0)({
 height: (uint64) 8,
 isOurs: (bool) false,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc4202d0e40)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc4206daf60)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc4202d0e80)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 c9 0f 83 43 fa 3e  19 9f a0 b9 9f 17 9d 66  |. ...C.>.......f|
     00000010  bc 6c 7b b5 6e 45 df 57  01 98 9a 64 d7 34 a9 35  |.l{.nE.W...d.4.5|
     00000020  03 fe                                             |..|
    }
   }),
   (*wire.TxOut)(0xc4202d0ea0)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2b 61 78 83 90 b1  be 56 c3 b5 47 63 eb 78  |..+ax....V..Gc.x|
     00000010  a3 2f 64 7a 70 e9                                 |./dzp.|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) {
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:24:03.910 [INF] NTFN: New spend subscription: utxo=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0
2018-01-07 01:24:03.910 [INF] PEER: peerID(1) loading ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:24:03.910 [INF] LNWL: Close observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) active
2018-01-07 01:24:03.910 [INF] BRAR: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) is now live, abandoning state contract for live version
2018-01-07 01:24:03.910 [DBG] BRAR: New contract detected, launching breachObserver
2018-01-07 01:24:03.910 [DBG] BRAR: Breach observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started 
2018-01-07 01:24:03.910 [INF] NTFN: New block epoch subscription
2018-01-07 01:24:03.910 [INF] NTFN: Cancelling spend notification for out_point=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0, spend_id=1
2018-01-07 01:24:04.108 [INF] HSWC: ChannelLink(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) is starting
2018-01-07 01:24:04.108 [INF] HSWC: Added channel link with chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, short_chan_id=((lnwire.ShortChannelID) 1257623:16:0
)
2018-01-07 01:24:04.108 [INF] DISC: peer %!x(MISSING) reconnected. Retry sending AnnounceSignatures.
2018-01-07 01:24:04.108 [DBG] DISC: Sending AnnounceSignatures for channel af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec to remote peer 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:24:04.108 [INF] SRVR: Attempting to send msgs 1 to: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:24:04.108 [INF] HSWC: HTLC manager for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started, bandwidth=5015000000 mSAT
2018-01-07 01:24:04.109 [INF] HSWC: Attempting to re-resynchronize ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:24:04.109 [DBG] PEER: Sending AnnounceSignatures(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, short_chan_id=1382771111859585024) to 172.17.0.5:60296
2018-01-07 01:24:04.109 [INF] DISC: Sent channel announcement proof to remote peer: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:24:04.109 [DBG] PEER: Sending ChannelReestablish(next_local_height=9, remote_tail_height=8) to 172.17.0.5:60296
2018-01-07 01:24:04.109 [INF] DISC: Syncing channel graph state with 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, sending 1 vertexes and 0 edges
2018-01-07 01:24:04.109 [INF] SRVR: Attempting to send msgs 1 to: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:24:04.109 [DBG] PEER: Sending NodeAnnouncement(node=03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1, update_time=2018-01-07 01:23:48 +0000 UTC) to 172.17.0.5:60296
2018-01-07 01:24:04.361 [DBG] PEER: Received AnnounceSignatures(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, short_chan_id=1382771111859585024) from 172.17.0.5:60296
2018-01-07 01:24:04.361 [INF] DISC: Received new remote channel announcement: (*lnwire.AnnounceSignatures)(0xc420638040)({
 ChannelID: (lnwire.ChannelID) (len=32 cap=32) af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec,
 ShortChannelID: (lnwire.ShortChannelID) 1257623:16:0,
 NodeSignature: (*btcec.Signature)(0xc42014fed0)({
  R: (*big.Int)(0xc42056a2a0)(6715118687306652433050179527179454833304313916609576592641650206516489929755),
  S: (*big.Int)(0xc42056a2c0)(54045220313106860925611116051987846153947578173878697874667029277238707761354)
 }),
 BitcoinSignature: (*btcec.Signature)(0xc42014fee0)({
  R: (*big.Int)(0xc42056a2e0)(89019118181802679759006145967894546440799226752280887278542107302574684271687),
  S: (*big.Int)(0xc42056a300)(9614830485771064588895830081217179393997117473415869699927266764433658204140)
 })
})

2018-01-07 01:24:04.363 [DBG] PEER: Received ChannelReestablish(next_local_height=9, remote_tail_height=8) from 172.17.0.5:60296
2018-01-07 01:24:04.363 [INF] HSWC: Received re-establishment message from remote side for channel(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:24:04.363 [DBG] PEER: Received NodeAnnouncement(node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, update_time=2018-01-07 01:24:00 +0000 UTC) from 172.17.0.5:60296
2018-01-07 01:24:04.647 [INF] DISC: Fully valid channel proof for short_chan_id=1382771111859585024 constructed, adding to next ann batch
2018-01-07 01:24:04.869 [INF] CRTR: Updated vertex data for node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:24:05.661 [INF] HSWC: Sent 0 satoshis received 15000 satoshis in the last 10 seconds (0.8 tx/sec)
2018-01-07 01:24:07.747 [DBG] CMGR: Attempting to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:24:07.747 [DBG] CMGR: Ignoring connection for canceled conn req: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:24:18.355 [INF] DISC: Broadcasting batch of 5 new announcements
2018-01-07 01:24:18.355 [DBG] SRVR: Broadcasting 1 messages
2018-01-07 01:24:18.355 [DBG] SRVR: Broadcasting 1 messages
2018-01-07 01:24:18.355 [DBG] SRVR: Broadcasting 1 messages
2018-01-07 01:24:18.356 [DBG] SRVR: Broadcasting 1 messages
2018-01-07 01:24:18.356 [DBG] SRVR: Broadcasting 1 messages
2018-01-07 01:24:18.356 [DBG] PEER: Sending NodeAnnouncement(node=03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1, update_time=2018-01-07 01:23:48 +0000 UTC) to 172.17.0.5:60296
2018-01-07 01:24:30.565 [DBG] PEER: Received NodeAnnouncement(node=038e84b9a94852b53029acfa740184141e9345963003d1cee34e91b3ffe441620e, update_time=2018-01-07 01:24:11 +0000 UTC) from 172.17.0.5:60296
2018-01-07 01:24:30.567 [DBG] PEER: Received NodeAnnouncement(node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, update_time=2018-01-07 01:24:00 +0000 UTC) from 172.17.0.5:60296
2018-01-07 01:24:30.574 [DBG] DISC: Ignoring outdated announcement for 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:24:30.574 [DBG] DISC: Ignoring node announcement for node not found in channel graph (038e84b9a94852b53029acfa740184141e9345963003d1cee34e91b3ffe441620e)
2018-01-07 01:25:04.109 [DBG] PEER: Sending Ping to 172.17.0.5:60296
2018-01-07 01:25:04.110 [DBG] PEER: Received Pong from 172.17.0.5:60296
2018-01-07 01:25:04.361 [DBG] PEER: Received Ping from 172.17.0.5:60296
2018-01-07 01:25:04.361 [DBG] PEER: Sending Pong to 172.17.0.5:60296
2018-01-07 01:25:28.621 [DBG] LTND: Adding invoice (*channeldb.Invoice)(0xc4205288f0)({
 Memo: ([]uint8) (len=3 cap=8) {
  00000000  66 6f 6f                                          |foo|
 },
 Receipt: ([]uint8) <nil>,
 PaymentRequest: ([]uint8) (len=194 cap=208) {
  00000000  6c 6e 74 62 31 35 30 75  31 70 64 39 7a 61 63 67  |lntb150u1pd9zacg|
  00000010  70 70 35 78 71 76 37 74  74 36 63 61 72 6c 35 34  |pp5xqv7tt6carl54|
  00000020  39 32 39 30 6c 71 79 67  76 30 33 38 33 71 39 61  |9290lqygv0383q9a|
  00000030  74 6e 67 6a 74 75 34 71  6c 6b 38 73 35 6d 33 6b  |tngjtu4qlk8s5m3k|
  00000040  33 6d 65 6e 35 36 71 64  71 39 76 65 68 6b 37 63  |3men56qdq9vehk7c|
  00000050  71 7a 79 73 76 7a 65 33  74 6b 34 6b 36 72 35 30  |qzysvze3tk4k6r50|
  00000060  39 32 63 74 68 66 37 39  34 73 63 38 67 75 71 68  |92cthf794sc8guqh|
  00000070  64 38 6e 39 33 66 32 61  75 33 39 74 6b 6e 30 74  |d8n93f2au39tkn0t|
  00000080  79 75 77 6d 70 39 72 34  68 74 33 73 73 79 75 79  |yuwmp9r4ht3ssyuy|
  00000090  75 36 73 76 68 61 70 76  70 72 7a 61 6a 67 68 64  |u6svhapvprzajghd|
  000000a0  65 6c 65 6c 73 34 30 39  64 6b 61 6b 73 75 65 78  |elels409dkaksuex|
  000000b0  73 6b 67 6d 78 71 33 77  36 67 73 70 66 75 64 6a  |skgmxq3w6gspfudj|
  000000c0  71 38                                             |q8|
 },
 CreationDate: (time.Time) 2018-01-07 01:25:28.620841481 +0000 UTC,
 SettleDate: (time.Time) 0001-01-01 00:00:00 +0000 UTC,
 Terms: (channeldb.ContractTerm) {
  PaymentPreimage: ([32]uint8) (len=32 cap=32) {
   00000000  b9 cb 29 88 f1 e4 bc d0  3b e1 75 4c ff d4 fe 06  |..).....;.uL....|
   00000010  73 a2 64 0e 66 c7 4e 6b  e2 b4 a0 f6 99 97 9d f5  |s.d.f.Nk........|
  },
  Value: (lnwire.MilliSatoshi) 15000000 mSAT,
  Settled: (bool) false
 }
})

2018-01-07 01:26:04.109 [DBG] PEER: Sending Ping to 172.17.0.5:60296
2018-01-07 01:26:04.109 [DBG] PEER: Received Pong from 172.17.0.5:60296
2018-01-07 01:26:04.361 [DBG] PEER: Received Ping from 172.17.0.5:60296
2018-01-07 01:26:04.361 [DBG] PEER: Sending Pong to 172.17.0.5:60296
2018-01-07 01:27:04.109 [DBG] PEER: Sending Ping to 172.17.0.5:60296
2018-01-07 01:27:04.110 [DBG] PEER: Received Pong from 172.17.0.5:60296
2018-01-07 01:27:04.361 [DBG] PEER: Received Ping from 172.17.0.5:60296
2018-01-07 01:27:04.361 [DBG] PEER: Sending Pong to 172.17.0.5:60296
2018-01-07 01:28:04.109 [DBG] PEER: Sending Ping to 172.17.0.5:60296
2018-01-07 01:28:04.110 [DBG] PEER: Received Pong from 172.17.0.5:60296
2018-01-07 01:28:04.361 [DBG] PEER: Received Ping from 172.17.0.5:60296
2018-01-07 01:28:04.361 [DBG] PEER: Sending Pong to 172.17.0.5:60296
2018-01-07 01:28:48.841 [DBG] PEER: Received UpdateAddHTLC(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, id=1, amt=15000000 mSAT, expiry=1257821, hash=3019e5af58e8ff4a95457fc04431f13c405eae6892f9507ec785371b47799d34) from 172.17.0.5:60296
2018-01-07 01:28:48.910 [DBG] PEER: Received CommitSig(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, num_htlcs=1) from 172.17.0.5:60296
2018-01-07 01:29:04.109 [DBG] PEER: Sending Ping to 172.17.0.5:60296
2018-01-07 01:29:04.110 [DBG] PEER: Received Pong from 172.17.0.5:60296
2018-01-07 01:29:04.361 [DBG] PEER: Received Ping from 172.17.0.5:60296
2018-01-07 01:29:04.361 [DBG] PEER: Sending Pong to 172.17.0.5:60296
2018-01-07 01:29:44.418 [WRN] LTND: open /root/.lnd/lnd.conf: no such file or directory
2018-01-07 01:29:44.418 [INF] LTND: Version 0.3.0-alpha
2018-01-07 01:29:44.418 [INF] CHDB: Checking for schema update: latest_version=0, db_version=0
2018-01-07 01:29:44.456 [INF] LTND: Primary chain is set to: bitcoin
2018-01-07 01:29:44.456 [INF] LTND: Initializing btcd backed fee estimator
2018-01-07 01:29:45.226 [INF] LNWL: Opened wallet
2018-01-07 01:29:46.045 [INF] LNWL: The wallet has been unlocked without a time limit
2018-01-07 01:29:46.047 [INF] LTND: LightningWallet opened
2018-01-07 01:29:46.114 [INF] LNWL: Started rescan from block 00000000005c29dac4a7c3e49a2add4c0819d71747d4662abe6c97b740c9d113 (height 1257677) for 6 addresses
2018-01-07 01:29:46.116 [INF] LNWL: Catching up block hashes to height 1257677, this might take a while
2018-01-07 01:29:46.116 [INF] RPCS: RPC server listening on 127.0.0.1:10009
2018-01-07 01:29:46.116 [INF] LTND: Waiting for chain backend to finish sync, start_height=1257677
2018-01-07 01:29:46.116 [INF] RPCS: gRPC proxy started at localhost:8080
2018-01-07 01:29:46.117 [INF] LTND: Chain backend is fully synced (end_height=1257677)!
2018-01-07 01:29:46.141 [INF] LNWL: Done catching up block hashes
2018-01-07 01:29:46.141 [INF] LNWL: Finished rescan for 6 addresses (synced to block 00000000005c29dac4a7c3e49a2add4c0819d71747d4662abe6c97b740c9d113, height 1257677)
2018-01-07 01:29:46.146 [INF] HSWC: Starting HTLC Switch
2018-01-07 01:29:46.146 [INF] NTFN: New block epoch subscription
2018-01-07 01:29:46.146 [INF] BRAR: Retrieved 1 channels from database, watching with vigilance!
2018-01-07 01:29:46.148 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting local commitment: (*lnwallet.commitment)(0xc4204963c0)({
 height: (uint64) 8,
 isOurs: (bool) true,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc42059b940)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc4205964e0)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc42059b980)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2f 74 e0 31 f3 7d  46 d4 ab da b4 e5 5a f2  |../t.1.}F.....Z.|
     00000010  3c f7 cd 4f 48 b0                                 |<..OH.|
    }
   }),
   (*wire.TxOut)(0xc42059b9a0)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 98 02 5c 7b 51 91  49 f3 c9 47 5d a6 ef ae  |. ..\{Q.I..G]...|
     00000010  42 fe 45 c3 a1 f1 0e 04  54 9d fd 35 b5 13 81 02  |B.E.....T..5....|
     00000020  5b 2c                                             |[,|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) (len=71 cap=71) {
  00000000  30 45 02 21 00 f9 43 5b  c1 dd 4c 99 ec 78 14 d3  |0E.!..C[..L..x..|
  00000010  cf af 26 1f 39 26 5a 76  aa 6c 45 a7 02 94 00 de  |..&.9&Zv.lE.....|
  00000020  5b 9e 8a d5 42 02 20 66  b6 91 da 6e 07 c8 c7 26  |[...B. f...n...&|
  00000030  88 d5 6a e7 5a f1 a5 10  45 09 55 83 3f 62 aa 9b  |..j.Z...E.U.?b..|
  00000040  fc cd c0 4a 55 96 be                              |...JU..|
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:29:46.149 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting remote commitment: (*lnwallet.commitment)(0xc42020c000)({
 height: (uint64) 8,
 isOurs: (bool) false,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc42059ba00)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc420596540)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc42059ba40)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 c9 0f 83 43 fa 3e  19 9f a0 b9 9f 17 9d 66  |. ...C.>.......f|
     00000010  bc 6c 7b b5 6e 45 df 57  01 98 9a 64 d7 34 a9 35  |.l{.nE.W...d.4.5|
     00000020  03 fe                                             |..|
    }
   }),
   (*wire.TxOut)(0xc42059ba60)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2b 61 78 83 90 b1  be 56 c3 b5 47 63 eb 78  |..+ax....V..Gc.x|
     00000010  a3 2f 64 7a 70 e9                                 |./dzp.|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) {
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:29:46.150 [INF] NTFN: New spend subscription: utxo=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0
2018-01-07 01:29:46.150 [INF] LNWL: Close observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) active
2018-01-07 01:29:46.150 [INF] DISC: Authenticated Gossiper is starting
2018-01-07 01:29:46.150 [INF] NTFN: New block epoch subscription
2018-01-07 01:29:46.150 [DBG] BRAR: Breach observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started 
2018-01-07 01:29:46.151 [DBG] DISC: Deleting message for chanID=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec from messageStore
2018-01-07 01:29:46.151 [DBG] DISC: Deleting message for chanID=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec from messageStore
2018-01-07 01:29:46.171 [INF] CRTR: FilteredChainView starting
2018-01-07 01:29:46.198 [INF] CRTR: Filtering chain using 1 channels active
2018-01-07 01:29:46.198 [DBG] CRTR: Updating chain filter with new UTXO's: [ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0]
2018-01-07 01:29:46.198 [INF] CRTR: Prune tip for Channel Graph: height=1257677, hash=00000000005c29dac4a7c3e49a2add4c0819d71747d4662abe6c97b740c9d113
2018-01-07 01:29:46.198 [DBG] SRVR: Attempting persistent connection to channel peer 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262
2018-01-07 01:29:46.198 [INF] SRVR: Auto peer bootstrapping is disabled
2018-01-07 01:29:46.199 [INF] CMGR: Server listening on [::]:9735
2018-01-07 01:29:46.199 [DBG] CMGR: Attempting to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:29:46.199 [DBG] CMGR: Failed to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1): dial tcp 172.17.0.5:52262: getsockopt: connection refused
2018-01-07 01:29:46.199 [DBG] CMGR: Retrying connection to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1) in 5s
2018-01-07 01:29:48.189 [INF] SRVR: New inbound connection from 172.17.0.5:60424
2018-01-07 01:29:48.189 [DBG] PEER: Sending Init to 172.17.0.5:60424
2018-01-07 01:29:48.189 [DBG] CMGR: Canceling: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:29:48.190 [DBG] PEER: Received Init from 172.17.0.5:60424
2018-01-07 01:29:48.191 [DBG] PEER: Loaded 1 active channels from database with peerID(1)
2018-01-07 01:29:48.195 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting local commitment: (*lnwallet.commitment)(0xc42020c240)({
 height: (uint64) 8,
 isOurs: (bool) true,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc42048bc00)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc4204f8b40)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc42048bc40)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2f 74 e0 31 f3 7d  46 d4 ab da b4 e5 5a f2  |../t.1.}F.....Z.|
     00000010  3c f7 cd 4f 48 b0                                 |<..OH.|
    }
   }),
   (*wire.TxOut)(0xc42048bc60)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 98 02 5c 7b 51 91  49 f3 c9 47 5d a6 ef ae  |. ..\{Q.I..G]...|
     00000010  42 fe 45 c3 a1 f1 0e 04  54 9d fd 35 b5 13 81 02  |B.E.....T..5....|
     00000020  5b 2c                                             |[,|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) (len=71 cap=71) {
  00000000  30 45 02 21 00 f9 43 5b  c1 dd 4c 99 ec 78 14 d3  |0E.!..C[..L..x..|
  00000010  cf af 26 1f 39 26 5a 76  aa 6c 45 a7 02 94 00 de  |..&.9&Zv.lE.....|
  00000020  5b 9e 8a d5 42 02 20 66  b6 91 da 6e 07 c8 c7 26  |[...B. f...n...&|
  00000030  88 d5 6a e7 5a f1 a5 10  45 09 55 83 3f 62 aa 9b  |..j.Z...E.U.?b..|
  00000040  fc cd c0 4a 55 96 be                              |...JU..|
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:29:48.200 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting remote commitment: (*lnwallet.commitment)(0xc42020c300)({
 height: (uint64) 8,
 isOurs: (bool) false,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 1,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 1,
 txn: (*wire.MsgTx)(0xc42048bcc0)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc4204f8ba0)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=2 cap=2) {
   (*wire.TxOut)(0xc42048bd00)({
    Value: (int64) 4982104,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 c9 0f 83 43 fa 3e  19 9f a0 b9 9f 17 9d 66  |. ...C.>.......f|
     00000010  bc 6c 7b b5 6e 45 df 57  01 98 9a 64 d7 34 a9 35  |.l{.nE.W...d.4.5|
     00000020  03 fe                                             |..|
    }
   }),
   (*wire.TxOut)(0xc42048bd20)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 2b 61 78 83 90 b1  be 56 c3 b5 47 63 eb 78  |..+ax....V..Gc.x|
     00000010  a3 2f 64 7a 70 e9                                 |./dzp.|
    }
   })
  },
  LockTime: (uint32) 537127950
 }),
 sig: ([]uint8) {
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4982104000 mSAT,
 fee: (btcutil.Amount) 0.00002896 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:29:48.202 [INF] NTFN: New spend subscription: utxo=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0
2018-01-07 01:29:48.202 [INF] PEER: peerID(1) loading ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:29:48.203 [INF] BRAR: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) is now live, abandoning state contract for live version
2018-01-07 01:29:48.203 [DBG] BRAR: New contract detected, launching breachObserver
2018-01-07 01:29:48.205 [DBG] BRAR: Breach observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started 
2018-01-07 01:29:48.202 [INF] LNWL: Close observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) active
2018-01-07 01:29:48.204 [INF] NTFN: New block epoch subscription
2018-01-07 01:29:48.205 [INF] NTFN: Cancelling spend notification for out_point=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0, spend_id=1
2018-01-07 01:29:48.248 [INF] HSWC: ChannelLink(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) is starting
2018-01-07 01:29:48.248 [INF] HSWC: Added channel link with chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, short_chan_id=((lnwire.ShortChannelID) 1257623:16:0
)
2018-01-07 01:29:48.248 [INF] HSWC: HTLC manager for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started, bandwidth=5015000000 mSAT
2018-01-07 01:29:48.248 [INF] HSWC: Attempting to re-resynchronize ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:29:48.249 [DBG] PEER: Sending ChannelReestablish(next_local_height=9, remote_tail_height=8) to 172.17.0.5:60424
2018-01-07 01:29:48.249 [INF] DISC: Syncing channel graph state with 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, sending 2 vertexes and 1 edges
2018-01-07 01:29:48.249 [INF] SRVR: Attempting to send msgs 5 to: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:29:48.249 [DBG] PEER: Sending ChannelAnnouncement(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024) to 172.17.0.5:60424
2018-01-07 01:29:48.249 [DBG] PEER: Sending ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=0, update_time=2018-01-06 13:47:32 +0000 UTC) to 172.17.0.5:60424
2018-01-07 01:29:48.249 [DBG] PEER: Sending ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=1, update_time=2018-01-06 13:47:32 +0000 UTC) to 172.17.0.5:60424
2018-01-07 01:29:48.249 [DBG] PEER: Sending NodeAnnouncement(node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, update_time=2018-01-07 01:24:00 +0000 UTC) to 172.17.0.5:60424
2018-01-07 01:29:48.249 [DBG] PEER: Sending NodeAnnouncement(node=03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1, update_time=2018-01-07 01:29:46 +0000 UTC) to 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received ChannelReestablish(next_local_height=9, remote_tail_height=8) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received UpdateAddHTLC(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, id=1, amt=15000000 mSAT, expiry=1257821, hash=3019e5af58e8ff4a95457fc04431f13c405eae6892f9507ec785371b47799d34) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received CommitSig(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, num_htlcs=1) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received ChannelAnnouncement(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=0, update_time=2018-01-06 13:47:32 +0000 UTC) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=1, update_time=2018-01-06 13:47:32 +0000 UTC) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received NodeAnnouncement(node=038e84b9a94852b53029acfa740184141e9345963003d1cee34e91b3ffe441620e, update_time=2018-01-07 01:24:11 +0000 UTC) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received NodeAnnouncement(node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, update_time=2018-01-07 01:24:00 +0000 UTC) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [DBG] PEER: Received NodeAnnouncement(node=03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1, update_time=2018-01-07 01:23:48 +0000 UTC) from 172.17.0.5:60424
2018-01-07 01:29:48.258 [INF] HSWC: Received re-establishment message from remote side for channel(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:29:48.259 [DBG] DISC: Ignoring node announcement for node not found in channel graph (038e84b9a94852b53029acfa740184141e9345963003d1cee34e91b3ffe441620e)
2018-01-07 01:29:48.260 [DBG] DISC: Router rejected channel edge: Ignoring msg for known chan_id=1382771111859585024
2018-01-07 01:29:48.260 [DBG] DISC: Ignoring outdated announcement for 03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1
2018-01-07 01:29:48.261 [DBG] DISC: Ignoring update (flags=0) for known chan_id=1382771111859585024
2018-01-07 01:29:48.261 [DBG] DISC: Ignoring outdated announcement for 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:29:48.261 [DBG] DISC: Ignoring update (flags=1) for known chan_id=1382771111859585024
2018-01-07 01:29:48.305 [DBG] PEER: Sending RevokeAndAck(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, rev=6fdf956e24d8947fd1b84e8e3bb24b763e0e4f7879bcc6f92991f1a8938c4a6c, next_point=026f1d2d9ba527ee5c68dc4bde025840abfbc2f5e7a62269f105f6d2573bc449af) to 172.17.0.5:60424
2018-01-07 01:29:48.340 [DBG] PEER: Sending CommitSig(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, num_htlcs=1) to 172.17.0.5:60424
2018-01-07 01:29:51.199 [DBG] CMGR: Attempting to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:29:51.200 [DBG] CMGR: Ignoring connection for canceled conn req: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:52262 (reqid 1)
2018-01-07 01:29:56.146 [INF] HSWC: Sent 0 satoshis received 15000 satoshis in the last 10 seconds (0.9 tx/sec)
2018-01-07 01:30:48.249 [DBG] PEER: Sending Ping to 172.17.0.5:60424
2018-01-07 01:30:48.249 [DBG] PEER: Received Pong from 172.17.0.5:60424
2018-01-07 01:30:48.257 [DBG] PEER: Received Ping from 172.17.0.5:60424
2018-01-07 01:30:48.257 [DBG] PEER: Sending Pong to 172.17.0.5:60424
2018-01-07 01:30:55.616 [DBG] PEER: Received UpdateAddHTLC(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, id=2, amt=15000000 mSAT, expiry=1257821, hash=3019e5af58e8ff4a95457fc04431f13c405eae6892f9507ec785371b47799d34) from 172.17.0.5:60424
2018-01-07 01:31:48.249 [DBG] PEER: Sending Ping to 172.17.0.5:60424
2018-01-07 01:31:48.250 [DBG] PEER: Received Pong from 172.17.0.5:60424
2018-01-07 01:31:48.257 [DBG] PEER: Received Ping from 172.17.0.5:60424
2018-01-07 01:31:48.257 [DBG] PEER: Sending Pong to 172.17.0.5:60424
2018-01-07 01:32:48.249 [DBG] PEER: Sending Ping to 172.17.0.5:60424
2018-01-07 01:32:48.250 [DBG] PEER: Received Pong from 172.17.0.5:60424
2018-01-07 01:32:48.257 [DBG] PEER: Received Ping from 172.17.0.5:60424
2018-01-07 01:32:48.257 [DBG] PEER: Sending Pong to 172.17.0.5:60424
2018-01-07 01:33:04.199 [INF] CRTR: Pruning channel graph using block 00000000000005bb2fb997235a2dcb1c6ee62b4a16ca38ec088bd5a13bfb0611 (height=1257678)
2018-01-07 01:33:04.200 [INF] NTFN: New block: height=1257678, sha=00000000000005bb2fb997235a2dcb1c6ee62b4a16ca38ec088bd5a13bfb0611
2018-01-07 01:33:04.202 [DBG] PEER: Received UpdateFee(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, fee_update_sat=6000) from 172.17.0.5:60424
2018-01-07 01:33:04.246 [INF] CRTR: Block 00000000000005bb2fb997235a2dcb1c6ee62b4a16ca38ec088bd5a13bfb0611 (height=1257678) closed 0 channels
2018-01-07 01:33:48.249 [DBG] PEER: Sending Ping to 172.17.0.5:60424
2018-01-07 01:33:48.249 [DBG] PEER: Received Pong from 172.17.0.5:60424
2018-01-07 01:33:48.257 [DBG] PEER: Received Ping from 172.17.0.5:60424
2018-01-07 01:33:48.257 [DBG] PEER: Sending Pong to 172.17.0.5:60424
2018-01-07 01:34:48.249 [DBG] PEER: Sending Ping to 172.17.0.5:60424
2018-01-07 01:34:48.250 [DBG] PEER: Received Pong from 172.17.0.5:60424
2018-01-07 01:34:48.257 [DBG] PEER: Received Ping from 172.17.0.5:60424
2018-01-07 01:34:48.257 [DBG] PEER: Sending Pong to 172.17.0.5:60424
2018-01-07 01:35:48.249 [DBG] PEER: Sending Ping to 172.17.0.5:60424
2018-01-07 01:35:48.249 [DBG] PEER: Received Pong from 172.17.0.5:60424
2018-01-07 01:35:48.257 [DBG] PEER: Received Ping from 172.17.0.5:60424
2018-01-07 01:35:48.257 [DBG] PEER: Sending Pong to 172.17.0.5:60424
2018-01-07 01:35:49.933 [DBG] RPCS: [listpeers] yielded [172.17.0.5:60424] peers
2018-01-07 01:36:08.685 [INF] RPCS: [listchannels] fetched 1 channels from DB
2018-01-07 01:36:48.249 [DBG] PEER: Sending Ping to 172.17.0.5:60424
2018-01-07 01:36:48.250 [DBG] PEER: Received Pong from 172.17.0.5:60424
2018-01-07 01:36:48.257 [DBG] PEER: Received Ping from 172.17.0.5:60424
2018-01-07 01:36:48.257 [DBG] PEER: Sending Pong to 172.17.0.5:60424
2018-01-07 01:37:19.129 [DBG] PEER: Received RevokeAndAck(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, rev=4813435b69c0bb3ea370050edc4ce21d0f54651444d38328365d7b232557d0ea, next_point=020fac07b98838bdd2b73a6aca9f17f65ebfbbab69881a79d33e8795b9e15f5a58) from 172.17.0.5:60424
2018-01-07 01:37:19.129 [INF] PEER: unable to read message from 172.17.0.5:60424: EOF
2018-01-07 01:37:19.129 [DBG] SRVR: Peer 172.17.0.5:60424 has been disconnected
2018-01-07 01:37:19.129 [DBG] FNDG: Cancelling all reservations for peer 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:37:19.130 [DBG] FNDG: No active reservations for node: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:37:19.158 [INF] HSWC: Removing channel link with ChannelID(af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec)
2018-01-07 01:37:19.158 [INF] HSWC: ChannelLink(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) is stopping
2018-01-07 01:37:19.158 [ERR] HSWC: Onion payload of incoming htlc(3019e5af58e8ff4a95457fc04431f13c405eae6892f9507ec785371b47799d34) has incorrect time-lock: expected 1257822, got 1257821
2018-01-07 01:37:19.158 [DBG] PEER: Peer shutting down, could not enqueue msg.
2018-01-07 01:37:19.181 [DBG] PEER: Peer shutting down, could not enqueue msg.
2018-01-07 01:37:19.181 [INF] HSWC: ChannelLink(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) has exited
2018-01-07 01:37:19.181 [DBG] HSWC: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) forwarding 0 HTLC's
2018-01-07 01:37:19.181 [INF] NTFN: Cancelling epoch notification, epoch_id=3
2018-01-07 01:37:19.181 [DBG] SRVR: removing peer 172.17.0.5:60424
2018-01-07 01:37:19.181 [DBG] SRVR: Attempting to re-establish persistent connection to peer 172.17.0.5:60424
2018-01-07 01:37:19.181 [DBG] CMGR: Attempting to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:60424 (reqid 2)
2018-01-07 01:37:19.181 [DBG] CMGR: Failed to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:60424 (reqid 2): dial tcp 172.17.0.5:60424: getsockopt: connection refused
2018-01-07 01:37:19.181 [DBG] CMGR: Retrying connection to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:60424 (reqid 2) in 5s
2018-01-07 01:37:24.181 [DBG] CMGR: Attempting to connect to 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:60424 (reqid 2)
2018-01-07 01:37:26.146 [INF] HSWC: Sent 0 satoshis received -15000 satoshis in the last 10 seconds (1.8446744073709553e+18 tx/sec)
2018-01-07 01:37:29.532 [INF] SRVR: New inbound connection from 172.17.0.5:60548
2018-01-07 01:37:29.533 [DBG] PEER: Sending Init to 172.17.0.5:60548
2018-01-07 01:37:29.533 [DBG] CMGR: Canceling: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e@172.17.0.5:60424 (reqid 2)
2018-01-07 01:37:29.533 [DBG] PEER: Received Init from 172.17.0.5:60548
2018-01-07 01:37:29.534 [DBG] PEER: Loaded 1 active channels from database with peerID(2)
2018-01-07 01:37:29.536 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting local commitment: (*lnwallet.commitment)(0xc420496840)({
 height: (uint64) 9,
 isOurs: (bool) true,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 2,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 2,
 txn: (*wire.MsgTx)(0xc420053880)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc420560cc0)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=3 cap=3) {
   (*wire.TxOut)(0xc420560d20)({
    Value: (int64) 15000,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 30 9b c9 71 30 96  41 68 af c6 df 29 84 fe  |. 0..q0.Ah...)..|
     00000010  22 ac 5b 48 4a 92 89 a3  b0 4b c0 b5 b6 2c 7d 51  |".[HJ....K...,}Q|
     00000020  4c e1                                             |L.|
    }
   }),
   (*wire.TxOut)(0xc420560d40)({
    Value: (int64) 4966416,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 0d 61 cc 98 19 c8  ce ec 8f 23 12 ca 53 8a  |...a.......#..S.|
     00000010  1a e3 b8 26 63 99                                 |...&c.|
    }
   }),
   (*wire.TxOut)(0xc420560d60)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 22 84 e2 22 e9 f7  88 51 77 3b f2 7c d3 2f  |. ".."...Qw;.|./|
     00000010  c4 c8 b5 a7 81 ed 2c e4  af bd 72 a8 3a ba 47 21  |......,...r.:.G!|
     00000020  b4 9b                                             |..|
    }
   })
  },
  LockTime: (uint32) 537127951
 }),
 sig: ([]uint8) (len=70 cap=70) {
  00000000  30 44 02 20 59 30 e8 61  84 c7 9a 21 16 82 45 d5  |0D. Y0.a...!..E.|
  00000010  b3 f1 0b e3 6d c8 80 05  97 b8 bb cd 58 32 f0 b6  |....m.......X2..|
  00000020  74 d0 d6 00 02 20 5e 20  81 15 e9 e5 80 fa 4f 7b  |t.... ^ ......O{|
  00000030  79 74 93 af de ea bb ea  4e 84 9d 8a a0 66 52 be  |yt......N....fR.|
  00000040  85 a2 ec 13 4e a0                                 |....N.|
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4966416000 mSAT,
 fee: (btcutil.Amount) 0.00003584 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) (len=1 cap=1) {
  (lnwallet.PaymentDescriptor) {
   RHash: (lnwallet.PaymentHash) (len=32 cap=32) {
    00000000  30 19 e5 af 58 e8 ff 4a  95 45 7f c0 44 31 f1 3c  |0...X..J.E..D1.<|
    00000010  40 5e ae 68 92 f9 50 7e  c7 85 37 1b 47 79 9d 34  |@^.h..P~..7.Gy.4|
   },
   RPreimage: (lnwallet.PaymentHash) (len=32 cap=32) {
    00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
   },
   Timeout: (uint32) 1257821,
   Amount: (lnwire.MilliSatoshi) 15000000 mSAT,
   LogIndex: (uint64) 1,
   HtlcIndex: (uint64) 1,
   ParentIndex: (uint64) 0,
   localOutputIndex: (int32) 0,
   remoteOutputIndex: (int32) 0,
   sig: (*btcec.Signature)(<nil>),
   addCommitHeightRemote: (uint64) 9,
   addCommitHeightLocal: (uint64) 9,
   removeCommitHeightRemote: (uint64) 0,
   removeCommitHeightLocal: (uint64) 0,
   OnionBlob: ([]uint8) (len=1366 cap=1366) {
    00000000  00 03 75 32 ed d2 b8 5b  bd 54 fa f5 3a bc 56 e2  |..u2...[.T..:.V.|
    00000010  00 1d fe f7 21 a8 55 01  32 27 cd a5 30 fa f6 aa  |....!.U.2'..0...|
    00000020  4f 41 e4 c7 e4 6f 81 0d  72 ad a2 50 2a 84 de 0f  |OA...o..r..P*...|
    00000030  3d 72 f4 06 5b 84 38 b9  9f e6 71 55 f7 8e 2d 1a  |=r..[.8...qU..-.|
    00000040  78 90 e2 4e cd da c2 1e  bd 78 d8 e6 7a 9f d3 88  |x..N.....x..z...|
    00000050  0c 7f a0 61 be 69 7e 60  b4 e6 c6 1b 15 e7 8a fd  |...a.i~`........|
    00000060  91 17 e2 81 4f 0a e7 8e  7e d3 33 a2 25 2a 31 d5  |....O...~.3.%*1.|
    00000070  7a 83 78 f3 a9 d0 f7 8e  26 ad c2 8f f1 99 58 e8  |z.x.....&.....X.|
    00000080  82 5d 97 05 d1 75 68 05  e4 97 45 22 a4 d7 36 66  |.]...uh...E"..6f|
    00000090  8b 1c 0e 04 f8 37 2e a2  f6 d0 04 ce f9 5d bc 36  |.....7.......].6|
    000000a0  20 03 67 e5 4c d4 f6 05  00 98 a9 2a 59 32 f2 95  | .g.L......*Y2..|
    000000b0  74 22 f9 07 3d 71 d1 60  ac 2a bb 02 ad 57 ec 0f  |t"..=q.`.*...W..|
    000000c0  00 a2 7f 4a 00 e5 d8 3a  db ab cb 58 5c 6d 55 84  |...J...:...X\mU.|
    000000d0  d9 03 51 64 d1 ce e6 ea  d1 4b b9 2f 05 db c6 8a  |..Qd.....K./....|
    000000e0  ee 0b c0 78 d9 97 23 79  8d c7 11 8b 73 f4 7a 2b  |...x..#y....s.z+|
    000000f0  ca c6 80 54 e8 f9 68 5c  93 88 65 ef 51 d3 4f 97  |...T..h\..e.Q.O.|
    00000100  84 a5 61 5d b2 ab 81 35  02 36 f9 37 4f d6 a6 82  |..a]...5.6.7O...|
    00000110  e8 ef c6 d8 82 43 ed 8e  82 27 a2 b6 f2 9b 72 6e  |.....C...'....rn|
    00000120  c9 49 de b4 08 16 c7 cb  5c 9f 43 72 04 5f b0 90  |.I......\.Cr._..|
    00000130  42 75 37 fa a5 e2 63 7b  0e e2 3a 92 df 61 9e 0d  |Bu7...c{..:..a..|
    00000140  ef 85 49 2b f4 5a f4 c7  8c f5 88 c3 3b 25 67 67  |..I+.Z......;%gg|
    00000150  9b bb 04 f4 92 e5 36 c7  77 6e 5c af 95 e6 12 3d  |......6.wn\....=|
    00000160  c7 d2 d7 df f3 cc 2f b2  49 60 ff 54 47 9a df 9c  |....../.I`.TG...|
    00000170  12 de cc 3a a5 41 c9 dd  fe 41 82 44 72 ff f8 13  |...:.A...A.Dr...|
    00000180  df 50 c3 4d f2 0f 35 1c  94 98 bc e4 b1 60 a8 de  |.P.M..5......`..|
    00000190  42 a7 3b 7a e6 f3 5a 1d  2c a7 72 71 82 64 11 f5  |B.;z..Z.,.rq.d..|
    000001a0  e2 bc 51 20 be 1c d5 ab  d4 ec 28 06 fc 19 7e 3a  |..Q ......(...~:|
    000001b0  dd 56 75 25 5e 80 96 bd  56 4e 32 42 4a dc cf e7  |.Vu%^...VN2BJ...|
    000001c0  32 7b 14 0c 6b 15 09 b8  3a a1 48 f3 d8 a1 f2 9c  |2{..k...:.H.....|
    000001d0  f3 0c b8 4b 83 ac 16 da  bf 26 8d 72 2a 6f 98 60  |...K.....&.r*o.`|
    000001e0  db 67 5d 72 e6 7a 1a e7  24 25 c6 dd 7b 8b e3 22  |.g]r.z..$%..{.."|
    000001f0  f8 25 6e dc 56 65 58 8c  67 f4 ed 0c ff 9d e1 b5  |.%n.VeX.g.......|
    00000200  91 43 bf d4 f6 31 1e f4  f2 58 0f d7 27 ce 5e 41  |.C...1...X..'.^A|
    00000210  79 18 55 ce 79 5c 79 17  42 51 f0 5d 89 fe 18 44  |y.U.y\y.BQ.]...D|
    00000220  ba 76 8f f8 9b 61 90 39  73 8f 6d d8 b1 e3 21 ba  |.v...a.9s.m...!.|
    00000230  6e a7 d6 56 2a 3f cc f4  32 97 69 5a bb cf 6d 88  |n..V*?..2.iZ..m.|
    00000240  83 b8 32 d6 2d ce 2a d6  73 0c 6d b2 4d 40 b4 38  |..2.-.*.s.m.M@.8|
    00000250  04 3f b9 38 fa 44 18 09  c2 5e 5f 59 72 99 40 85  |.?.8.D...^_Yr.@.|
    00000260  ed 0e bf 93 4e 71 24 13  b8 ab 71 78 0d 74 c9 9a  |....Nq$...qx.t..|
    00000270  77 2e b3 e6 83 19 f9 00  97 44 18 88 d9 1e b1 5c  |w........D.....\|
    00000280  9b c9 42 65 b5 9b b7 3b  79 43 0e 11 26 0d 45 d3  |..Be...;yC..&.E.|
    00000290  0c e9 ba eb 13 08 00 8b  c6 35 fd c3 12 85 c6 f6  |.........5......|
    000002a0  87 d1 69 b8 6e 17 b4 e1  ed 37 79 56 09 57 33 48  |..i.n....7yV.W3H|
    000002b0  8c 59 a1 9f fa b6 4e 60  75 42 71 fc 14 ec 75 60  |.Y....N`uBq...u`|
    000002c0  53 77 43 28 21 1c 9f 1b  15 27 58 df 1a b0 9e 04  |SwC(!....'X.....|
    000002d0  fb a6 33 31 7d 73 53 28  c6 29 2c f0 dc 07 1b 6b  |..31}sS(.),....k|
    000002e0  f2 30 3e 2b 67 d0 bd 9f  bf ee a4 82 1a 1e 14 38  |.0>+g..........8|
    000002f0  0a 85 56 cd f1 cb e2 47  92 90 be d9 ef 4b 2a 08  |..V....G.....K*.|
    00000300  29 d2 fb ff 81 d2 22 c6  7b c6 62 4d c3 39 20 4e  |).....".{.bM.9 N|
    00000310  9a 02 5e 93 c7 27 4e 27  17 23 68 17 85 11 c4 15  |..^..'N'.#h.....|
    00000320  47 0b 9d 80 f4 08 cb cd  ef a1 1a 4b a4 83 ca 1a  |G..........K....|
    00000330  a7 77 c0 f2 96 6e ab 34  0f 42 be 02 e9 a8 4d 4d  |.w...n.4.B....MM|
    00000340  c4 cd 06 c8 a8 63 53 36  00 4f 06 ec 7b 70 f1 7a  |.....cS6.O..{p.z|
    00000350  4c f4 9e 2b e9 f6 b4 36  6f 37 59 98 7f f9 e2 5e  |L..+...6o7Y....^|
    00000360  66 00 fc ca 34 91 98 e1  bb c7 4f 73 c0 29 31 42  |f...4.....Os.)1B|
    00000370  40 b2 88 4a f1 a0 61 8c  b0 1c 27 51 eb eb a8 00  |@..J..a...'Q....|
    00000380  62 c2 88 ba a6 a8 e4 ae  c3 69 db d5 44 27 59 4c  |b........i..D'YL|
    00000390  79 e6 e7 3a 9d 04 42 a7  51 fb d1 f8 22 71 17 8c  |y..:..B.Q..."q..|
    000003a0  16 06 c8 96 bf b8 62 82  99 ca 3b 5e 6c 3a c9 55  |......b...;^l:.U|
    000003b0  b8 5e 7d 17 8e e7 a5 cc  14 0d 74 4b f7 c0 6e 1d  |.^}.......tK..n.|
    000003c0  7a 67 13 42 ac 2c c5 88  cc 8f 59 01 cf fc f9 6d  |zg.B.,....Y....m|
    000003d0  ad 4f f2 a8 c1 57 e7 a1  fc 5d 29 5b 58 00 0e e3  |.O...W...])[X...|
    000003e0  bb d8 7f d0 42 8d 4e c7  54 87 fe e0 f9 91 d5 45  |....B.N.T......E|
    000003f0  58 2a 8a 47 4f c3 b7 39  e4 68 ca 18 1c 37 7e 1b  |X*.GO..9.h...7~.|
    00000400  a5 c3 40 01 b8 b6 a7 92  28 5d a5 50 0c 1e 15 72  |..@.....(].P...r|
    00000410  ab 4f 14 2b 3b 13 8e 2d  85 02 53 2b 7d b7 59 a6  |.O.+;..-..S+}.Y.|
    00000420  98 55 a0 42 64 d3 79 22  f0 fe 96 fb 30 eb 68 22  |.U.Bd.y"....0.h"|
    00000430  29 69 bf a1 24 23 0b ae  21 14 c9 0e e2 6e bb fd  |)i..$#..!....n..|
    00000440  d5 f7 cd 30 41 a0 a5 4a  9e 38 aa 51 08 f5 68 ed  |...0A..J.8.Q..h.|
    00000450  d3 bb 16 29 df 2b f3 67  a5 0b aa 81 2f 3f 65 17  |...).+.g..../?e.|
    00000460  92 14 4e 5d 04 a0 7f 77  90 35 2c 56 81 ee ed f2  |..N]...w.5,V....|
    00000470  4d 84 7e 4a 44 b8 80 a4  7c 58 3d 23 6a f9 f7 d1  |M.~JD...|X=#j...|
    00000480  1c 54 e8 08 a8 98 7b 97  91 67 5f de 0e eb 70 a1  |.T....{..g_...p.|
    00000490  16 01 b4 1c 38 93 80 72  fc 83 76 96 e8 db 9e df  |....8..r..v.....|
    000004a0  1b 5e 26 37 17 00 ae e8  fc 7b 86 d0 1c 9c 85 2e  |.^&7.....{......|
    000004b0  eb d5 74 1a 91 77 46 6b  93 fb 9c f1 6d 4a f8 54  |..t..wFk....mJ.T|
    000004c0  f4 0a ac 5b 5a 19 0e 20  9d 97 82 cd aa 84 39 7c  |...[Z.. ......9||
    000004d0  d4 78 b9 f5 07 d4 54 31  54 12 61 a4 54 11 ea b7  |.x....T1T.a.T...|
    000004e0  a0 58 19 35 d4 d3 30 2f  85 1c 1e bd 50 80 a7 bf  |.X.5..0/....P...|
    000004f0  81 55 f1 0a c5 0b 3c 09  ec b9 1e 3e 11 12 7b 9e  |.U....<....>..{.|
    00000500  bb 7d 5c 9b a5 dd a5 b6  c7 91 b9 81 f4 7c 68 74  |.}\..........|ht|
    00000510  5d 93 05 29 96 6c 43 1d  7e 7f f6 09 5a 2e c2 4e  |]..).lC.~...Z..N|
    00000520  2c dc 64 d2 e0 08 a8 d4  a7 c5 04 00 06 0c 08 37  |,.d............7|
    00000530  a4 0c ac 03 29 13 4f 73  72 49 ae 40 6e 40 25 f6  |....).OsrI.@n@%.|
    00000540  45 28 84 54 45 aa de 41  f8 97 18 39 73 23 11 1f  |E(.TE..A...9s#..|
    00000550  ee c4 62 f3 ba 2c                                 |..b..,|
   },
   ShaOnionBlob: ([32]uint8) (len=32 cap=32) {
    00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
   },
   FailReason: ([]uint8) <nil>,
   FailCode: (lnwire.FailCode) <unknown>,
   ourPkScript: ([]uint8) (len=34 cap=500) {
    00000000  00 20 30 9b c9 71 30 96  41 68 af c6 df 29 84 fe  |. 0..q0.Ah...)..|
    00000010  22 ac 5b 48 4a 92 89 a3  b0 4b c0 b5 b6 2c 7d 51  |".[HJ....K...,}Q|
    00000020  4c e1                                             |L.|
   },
   ourWitnessScript: ([]uint8) (len=139 cap=500) {
    00000000  76 a9 14 f8 6d d0 09 0a  e8 5f e1 b8 7c 1f cb 24  |v...m...._..|..$|
    00000010  fd e3 ff ed 32 5f a9 87  63 ac 67 21 02 fe 11 6c  |....2_..c.g!...l|
    00000020  00 e5 78 62 cd d6 e0 45  b9 fb 9b 1e 7b fa d0 fd  |..xb...E....{...|
    00000030  d1 1c 6c ee f7 df c5 c8  ee 1e bd ef 66 7c 82 01  |..l.........f|..|
    00000040  20 87 63 a9 14 d0 a5 e9  3c 68 a0 72 dc bc 97 2a  | .c.....<h.r...*|
    00000050  b8 a8 74 d7 b6 e6 72 64  0d 88 52 7c 21 03 5c e8  |..t...rd..R|!.\.|
    00000060  0b 5c 44 a8 00 42 11 85  e2 21 9e c2 26 d3 c2 fb  |.\D..B...!..&...|
    00000070  66 b6 ca 47 ac 2e 82 e0  db 4d a1 ee 24 d5 52 ae  |f..G.....M..$.R.|
    00000080  67 75 03 5d 31 13 b1 75  ac 68 68                 |gu.]1..u.hh|
   },
   theirPkScript: ([]uint8) (len=34 cap=500) {
    00000000  00 20 16 6f 59 dc 03 2f  c0 4b f1 82 78 15 62 df  |. .oY../.K..x.b.|
    00000010  d0 a8 a6 25 f2 db 81 79  d2 83 28 c4 6e fd 46 3e  |...%...y..(.n.F>|
    00000020  99 ad                                             |..|
   },
   theirWitnessScript: ([]uint8) (len=133 cap=500) {
    00000000  76 a9 14 11 55 79 9a ae  dc 3d 1a 50 78 05 1e c6  |v...Uy...=.Px...|
    00000010  7f 31 4c e5 7e 7f ff 87  63 ac 67 21 02 8c d0 76  |.1L.~...c.g!...v|
    00000020  48 52 98 1d 0b 0e c3 7b  bb 16 c7 b5 39 2d 05 c9  |HR.....{....9-..|
    00000030  de f0 87 e4 07 cd 1c 91  2e 11 27 63 c3 7c 82 01  |..........'c.|..|
    00000040  20 87 64 75 52 7c 21 03  77 26 a0 db 8a 06 f8 b6  | .duR|!.w&......|
    00000050  7a 56 76 ac ff d6 83 2f  8c 11 32 8c 79 66 0a 1c  |zVv..../..2.yf..|
    00000060  d7 48 af 59 12 28 2e cc  52 ae 67 a9 14 d0 a5 e9  |.H.Y.(..R.g.....|
    00000070  3c 68 a0 72 dc bc 97 2a  b8 a8 74 d7 b6 e6 72 64  |<h.r...*..t...rd|
    00000080  0d 88 ac 68 68                                    |...hh|
   },
   EntryType: (lnwallet.updateType) Add,
   isForwarded: (bool) false
  }
 },
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) (len=1) {
  (int32) 0: (*lnwallet.PaymentDescriptor)(0xc42015a9a0)({
   RHash: (lnwallet.PaymentHash) (len=32 cap=32) {
    00000000  30 19 e5 af 58 e8 ff 4a  95 45 7f c0 44 31 f1 3c  |0...X..J.E..D1.<|
    00000010  40 5e ae 68 92 f9 50 7e  c7 85 37 1b 47 79 9d 34  |@^.h..P~..7.Gy.4|
   },
   RPreimage: (lnwallet.PaymentHash) (len=32 cap=32) {
    00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
   },
   Timeout: (uint32) 1257821,
   Amount: (lnwire.MilliSatoshi) 15000000 mSAT,
   LogIndex: (uint64) 1,
   HtlcIndex: (uint64) 1,
   ParentIndex: (uint64) 0,
   localOutputIndex: (int32) 0,
   remoteOutputIndex: (int32) 0,
   sig: (*btcec.Signature)(<nil>),
   addCommitHeightRemote: (uint64) 9,
   addCommitHeightLocal: (uint64) 9,
   removeCommitHeightRemote: (uint64) 0,
   removeCommitHeightLocal: (uint64) 0,
   OnionBlob: ([]uint8) (len=1366 cap=1366) {
    00000000  00 03 75 32 ed d2 b8 5b  bd 54 fa f5 3a bc 56 e2  |..u2...[.T..:.V.|
    00000010  00 1d fe f7 21 a8 55 01  32 27 cd a5 30 fa f6 aa  |....!.U.2'..0...|
    00000020  4f 41 e4 c7 e4 6f 81 0d  72 ad a2 50 2a 84 de 0f  |OA...o..r..P*...|
    00000030  3d 72 f4 06 5b 84 38 b9  9f e6 71 55 f7 8e 2d 1a  |=r..[.8...qU..-.|
    00000040  78 90 e2 4e cd da c2 1e  bd 78 d8 e6 7a 9f d3 88  |x..N.....x..z...|
    00000050  0c 7f a0 61 be 69 7e 60  b4 e6 c6 1b 15 e7 8a fd  |...a.i~`........|
    00000060  91 17 e2 81 4f 0a e7 8e  7e d3 33 a2 25 2a 31 d5  |....O...~.3.%*1.|
    00000070  7a 83 78 f3 a9 d0 f7 8e  26 ad c2 8f f1 99 58 e8  |z.x.....&.....X.|
    00000080  82 5d 97 05 d1 75 68 05  e4 97 45 22 a4 d7 36 66  |.]...uh...E"..6f|
    00000090  8b 1c 0e 04 f8 37 2e a2  f6 d0 04 ce f9 5d bc 36  |.....7.......].6|
    000000a0  20 03 67 e5 4c d4 f6 05  00 98 a9 2a 59 32 f2 95  | .g.L......*Y2..|
    000000b0  74 22 f9 07 3d 71 d1 60  ac 2a bb 02 ad 57 ec 0f  |t"..=q.`.*...W..|
    000000c0  00 a2 7f 4a 00 e5 d8 3a  db ab cb 58 5c 6d 55 84  |...J...:...X\mU.|
    000000d0  d9 03 51 64 d1 ce e6 ea  d1 4b b9 2f 05 db c6 8a  |..Qd.....K./....|
    000000e0  ee 0b c0 78 d9 97 23 79  8d c7 11 8b 73 f4 7a 2b  |...x..#y....s.z+|
    000000f0  ca c6 80 54 e8 f9 68 5c  93 88 65 ef 51 d3 4f 97  |...T..h\..e.Q.O.|
    00000100  84 a5 61 5d b2 ab 81 35  02 36 f9 37 4f d6 a6 82  |..a]...5.6.7O...|
    00000110  e8 ef c6 d8 82 43 ed 8e  82 27 a2 b6 f2 9b 72 6e  |.....C...'....rn|
    00000120  c9 49 de b4 08 16 c7 cb  5c 9f 43 72 04 5f b0 90  |.I......\.Cr._..|
    00000130  42 75 37 fa a5 e2 63 7b  0e e2 3a 92 df 61 9e 0d  |Bu7...c{..:..a..|
    00000140  ef 85 49 2b f4 5a f4 c7  8c f5 88 c3 3b 25 67 67  |..I+.Z......;%gg|
    00000150  9b bb 04 f4 92 e5 36 c7  77 6e 5c af 95 e6 12 3d  |......6.wn\....=|
    00000160  c7 d2 d7 df f3 cc 2f b2  49 60 ff 54 47 9a df 9c  |....../.I`.TG...|
    00000170  12 de cc 3a a5 41 c9 dd  fe 41 82 44 72 ff f8 13  |...:.A...A.Dr...|
    00000180  df 50 c3 4d f2 0f 35 1c  94 98 bc e4 b1 60 a8 de  |.P.M..5......`..|
    00000190  42 a7 3b 7a e6 f3 5a 1d  2c a7 72 71 82 64 11 f5  |B.;z..Z.,.rq.d..|
    000001a0  e2 bc 51 20 be 1c d5 ab  d4 ec 28 06 fc 19 7e 3a  |..Q ......(...~:|
    000001b0  dd 56 75 25 5e 80 96 bd  56 4e 32 42 4a dc cf e7  |.Vu%^...VN2BJ...|
    000001c0  32 7b 14 0c 6b 15 09 b8  3a a1 48 f3 d8 a1 f2 9c  |2{..k...:.H.....|
    000001d0  f3 0c b8 4b 83 ac 16 da  bf 26 8d 72 2a 6f 98 60  |...K.....&.r*o.`|
    000001e0  db 67 5d 72 e6 7a 1a e7  24 25 c6 dd 7b 8b e3 22  |.g]r.z..$%..{.."|
    000001f0  f8 25 6e dc 56 65 58 8c  67 f4 ed 0c ff 9d e1 b5  |.%n.VeX.g.......|
    00000200  91 43 bf d4 f6 31 1e f4  f2 58 0f d7 27 ce 5e 41  |.C...1...X..'.^A|
    00000210  79 18 55 ce 79 5c 79 17  42 51 f0 5d 89 fe 18 44  |y.U.y\y.BQ.]...D|
    00000220  ba 76 8f f8 9b 61 90 39  73 8f 6d d8 b1 e3 21 ba  |.v...a.9s.m...!.|
    00000230  6e a7 d6 56 2a 3f cc f4  32 97 69 5a bb cf 6d 88  |n..V*?..2.iZ..m.|
    00000240  83 b8 32 d6 2d ce 2a d6  73 0c 6d b2 4d 40 b4 38  |..2.-.*.s.m.M@.8|
    00000250  04 3f b9 38 fa 44 18 09  c2 5e 5f 59 72 99 40 85  |.?.8.D...^_Yr.@.|
    00000260  ed 0e bf 93 4e 71 24 13  b8 ab 71 78 0d 74 c9 9a  |....Nq$...qx.t..|
    00000270  77 2e b3 e6 83 19 f9 00  97 44 18 88 d9 1e b1 5c  |w........D.....\|
    00000280  9b c9 42 65 b5 9b b7 3b  79 43 0e 11 26 0d 45 d3  |..Be...;yC..&.E.|
    00000290  0c e9 ba eb 13 08 00 8b  c6 35 fd c3 12 85 c6 f6  |.........5......|
    000002a0  87 d1 69 b8 6e 17 b4 e1  ed 37 79 56 09 57 33 48  |..i.n....7yV.W3H|
    000002b0  8c 59 a1 9f fa b6 4e 60  75 42 71 fc 14 ec 75 60  |.Y....N`uBq...u`|
    000002c0  53 77 43 28 21 1c 9f 1b  15 27 58 df 1a b0 9e 04  |SwC(!....'X.....|
    000002d0  fb a6 33 31 7d 73 53 28  c6 29 2c f0 dc 07 1b 6b  |..31}sS(.),....k|
    000002e0  f2 30 3e 2b 67 d0 bd 9f  bf ee a4 82 1a 1e 14 38  |.0>+g..........8|
    000002f0  0a 85 56 cd f1 cb e2 47  92 90 be d9 ef 4b 2a 08  |..V....G.....K*.|
    00000300  29 d2 fb ff 81 d2 22 c6  7b c6 62 4d c3 39 20 4e  |).....".{.bM.9 N|
    00000310  9a 02 5e 93 c7 27 4e 27  17 23 68 17 85 11 c4 15  |..^..'N'.#h.....|
    00000320  47 0b 9d 80 f4 08 cb cd  ef a1 1a 4b a4 83 ca 1a  |G..........K....|
    00000330  a7 77 c0 f2 96 6e ab 34  0f 42 be 02 e9 a8 4d 4d  |.w...n.4.B....MM|
    00000340  c4 cd 06 c8 a8 63 53 36  00 4f 06 ec 7b 70 f1 7a  |.....cS6.O..{p.z|
    00000350  4c f4 9e 2b e9 f6 b4 36  6f 37 59 98 7f f9 e2 5e  |L..+...6o7Y....^|
    00000360  66 00 fc ca 34 91 98 e1  bb c7 4f 73 c0 29 31 42  |f...4.....Os.)1B|
    00000370  40 b2 88 4a f1 a0 61 8c  b0 1c 27 51 eb eb a8 00  |@..J..a...'Q....|
    00000380  62 c2 88 ba a6 a8 e4 ae  c3 69 db d5 44 27 59 4c  |b........i..D'YL|
    00000390  79 e6 e7 3a 9d 04 42 a7  51 fb d1 f8 22 71 17 8c  |y..:..B.Q..."q..|
    000003a0  16 06 c8 96 bf b8 62 82  99 ca 3b 5e 6c 3a c9 55  |......b...;^l:.U|
    000003b0  b8 5e 7d 17 8e e7 a5 cc  14 0d 74 4b f7 c0 6e 1d  |.^}.......tK..n.|
    000003c0  7a 67 13 42 ac 2c c5 88  cc 8f 59 01 cf fc f9 6d  |zg.B.,....Y....m|
    000003d0  ad 4f f2 a8 c1 57 e7 a1  fc 5d 29 5b 58 00 0e e3  |.O...W...])[X...|
    000003e0  bb d8 7f d0 42 8d 4e c7  54 87 fe e0 f9 91 d5 45  |....B.N.T......E|
    000003f0  58 2a 8a 47 4f c3 b7 39  e4 68 ca 18 1c 37 7e 1b  |X*.GO..9.h...7~.|
    00000400  a5 c3 40 01 b8 b6 a7 92  28 5d a5 50 0c 1e 15 72  |..@.....(].P...r|
    00000410  ab 4f 14 2b 3b 13 8e 2d  85 02 53 2b 7d b7 59 a6  |.O.+;..-..S+}.Y.|
    00000420  98 55 a0 42 64 d3 79 22  f0 fe 96 fb 30 eb 68 22  |.U.Bd.y"....0.h"|
    00000430  29 69 bf a1 24 23 0b ae  21 14 c9 0e e2 6e bb fd  |)i..$#..!....n..|
    00000440  d5 f7 cd 30 41 a0 a5 4a  9e 38 aa 51 08 f5 68 ed  |...0A..J.8.Q..h.|
    00000450  d3 bb 16 29 df 2b f3 67  a5 0b aa 81 2f 3f 65 17  |...).+.g..../?e.|
    00000460  92 14 4e 5d 04 a0 7f 77  90 35 2c 56 81 ee ed f2  |..N]...w.5,V....|
    00000470  4d 84 7e 4a 44 b8 80 a4  7c 58 3d 23 6a f9 f7 d1  |M.~JD...|X=#j...|
    00000480  1c 54 e8 08 a8 98 7b 97  91 67 5f de 0e eb 70 a1  |.T....{..g_...p.|
    00000490  16 01 b4 1c 38 93 80 72  fc 83 76 96 e8 db 9e df  |....8..r..v.....|
    000004a0  1b 5e 26 37 17 00 ae e8  fc 7b 86 d0 1c 9c 85 2e  |.^&7.....{......|
    000004b0  eb d5 74 1a 91 77 46 6b  93 fb 9c f1 6d 4a f8 54  |..t..wFk....mJ.T|
    000004c0  f4 0a ac 5b 5a 19 0e 20  9d 97 82 cd aa 84 39 7c  |...[Z.. ......9||
    000004d0  d4 78 b9 f5 07 d4 54 31  54 12 61 a4 54 11 ea b7  |.x....T1T.a.T...|
    000004e0  a0 58 19 35 d4 d3 30 2f  85 1c 1e bd 50 80 a7 bf  |.X.5..0/....P...|
    000004f0  81 55 f1 0a c5 0b 3c 09  ec b9 1e 3e 11 12 7b 9e  |.U....<....>..{.|
    00000500  bb 7d 5c 9b a5 dd a5 b6  c7 91 b9 81 f4 7c 68 74  |.}\..........|ht|
    00000510  5d 93 05 29 96 6c 43 1d  7e 7f f6 09 5a 2e c2 4e  |]..).lC.~...Z..N|
    00000520  2c dc 64 d2 e0 08 a8 d4  a7 c5 04 00 06 0c 08 37  |,.d............7|
    00000530  a4 0c ac 03 29 13 4f 73  72 49 ae 40 6e 40 25 f6  |....).OsrI.@n@%.|
    00000540  45 28 84 54 45 aa de 41  f8 97 18 39 73 23 11 1f  |E(.TE..A...9s#..|
    00000550  ee c4 62 f3 ba 2c                                 |..b..,|
   },
   ShaOnionBlob: ([32]uint8) (len=32 cap=32) {
    00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
   },
   FailReason: ([]uint8) <nil>,
   FailCode: (lnwire.FailCode) <unknown>,
   ourPkScript: ([]uint8) (len=34 cap=500) {
    00000000  00 20 30 9b c9 71 30 96  41 68 af c6 df 29 84 fe  |. 0..q0.Ah...)..|
    00000010  22 ac 5b 48 4a 92 89 a3  b0 4b c0 b5 b6 2c 7d 51  |".[HJ....K...,}Q|
    00000020  4c e1                                             |L.|
   },
   ourWitnessScript: ([]uint8) (len=139 cap=500) {
    00000000  76 a9 14 f8 6d d0 09 0a  e8 5f e1 b8 7c 1f cb 24  |v...m...._..|..$|
    00000010  fd e3 ff ed 32 5f a9 87  63 ac 67 21 02 fe 11 6c  |....2_..c.g!...l|
    00000020  00 e5 78 62 cd d6 e0 45  b9 fb 9b 1e 7b fa d0 fd  |..xb...E....{...|
    00000030  d1 1c 6c ee f7 df c5 c8  ee 1e bd ef 66 7c 82 01  |..l.........f|..|
    00000040  20 87 63 a9 14 d0 a5 e9  3c 68 a0 72 dc bc 97 2a  | .c.....<h.r...*|
    00000050  b8 a8 74 d7 b6 e6 72 64  0d 88 52 7c 21 03 5c e8  |..t...rd..R|!.\.|
    00000060  0b 5c 44 a8 00 42 11 85  e2 21 9e c2 26 d3 c2 fb  |.\D..B...!..&...|
    00000070  66 b6 ca 47 ac 2e 82 e0  db 4d a1 ee 24 d5 52 ae  |f..G.....M..$.R.|
    00000080  67 75 03 5d 31 13 b1 75  ac 68 68                 |gu.]1..u.hh|
   },
   theirPkScript: ([]uint8) (len=34 cap=500) {
    00000000  00 20 16 6f 59 dc 03 2f  c0 4b f1 82 78 15 62 df  |. .oY../.K..x.b.|
    00000010  d0 a8 a6 25 f2 db 81 79  d2 83 28 c4 6e fd 46 3e  |...%...y..(.n.F>|
    00000020  99 ad                                             |..|
   },
   theirWitnessScript: ([]uint8) (len=133 cap=500) {
    00000000  76 a9 14 11 55 79 9a ae  dc 3d 1a 50 78 05 1e c6  |v...Uy...=.Px...|
    00000010  7f 31 4c e5 7e 7f ff 87  63 ac 67 21 02 8c d0 76  |.1L.~...c.g!...v|
    00000020  48 52 98 1d 0b 0e c3 7b  bb 16 c7 b5 39 2d 05 c9  |HR.....{....9-..|
    00000030  de f0 87 e4 07 cd 1c 91  2e 11 27 63 c3 7c 82 01  |..........'c.|..|
    00000040  20 87 64 75 52 7c 21 03  77 26 a0 db 8a 06 f8 b6  | .duR|!.w&......|
    00000050  7a 56 76 ac ff d6 83 2f  8c 11 32 8c 79 66 0a 1c  |zVv..../..2.yf..|
    00000060  d7 48 af 59 12 28 2e cc  52 ae 67 a9 14 d0 a5 e9  |.H.Y.(..R.g.....|
    00000070  3c 68 a0 72 dc bc 97 2a  b8 a8 74 d7 b6 e6 72 64  |<h.r...*..t...rd|
    00000080  0d 88 ac 68 68                                    |...hh|
   },
   EntryType: (lnwallet.updateType) Add,
   isForwarded: (bool) false
  })
 }
})

2018-01-07 01:37:29.543 [DBG] LNWL: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0), starting remote commitment: (*lnwallet.commitment)(0xc420582480)({
 height: (uint64) 9,
 isOurs: (bool) false,
 ourMessageIndex: (uint64) 1,
 theirMessageIndex: (uint64) 2,
 ourHtlcIndex: (uint64) 0,
 theirHtlcIndex: (uint64) 2,
 txn: (*wire.MsgTx)(0xc4200538c0)({
  Version: (int32) 2,
  TxIn: ([]*wire.TxIn) (len=1 cap=1) {
   (*wire.TxIn)(0xc420560de0)({
    PreviousOutPoint: (wire.OutPoint) ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0,
    SignatureScript: ([]uint8) {
    },
    Witness: (wire.TxWitness) <nil>,
    Sequence: (uint32) 2156006616
   })
  },
  TxOut: ([]*wire.TxOut) (len=3 cap=3) {
   (*wire.TxOut)(0xc420560e40)({
    Value: (int64) 15000,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 16 6f 59 dc 03 2f  c0 4b f1 82 78 15 62 df  |. .oY../.K..x.b.|
     00000010  d0 a8 a6 25 f2 db 81 79  d2 83 28 c4 6e fd 46 3e  |...%...y..(.n.F>|
     00000020  99 ad                                             |..|
    }
   }),
   (*wire.TxOut)(0xc420560e60)({
    Value: (int64) 4966416,
    PkScript: ([]uint8) (len=34 cap=34) {
     00000000  00 20 1b 8a 09 1e 76 40  17 0e f3 68 e1 3f 66 ba  |. ....v@...h.?f.|
     00000010  b2 ab f5 7d e9 d4 f1 d2  c0 2f 8c 7a e9 19 fa c6  |...}...../.z....|
     00000020  8b 2c                                             |.,|
    }
   }),
   (*wire.TxOut)(0xc420560e80)({
    Value: (int64) 5015000,
    PkScript: ([]uint8) (len=22 cap=22) {
     00000000  00 14 ab 2d 3f b7 c9 ab  7e eb 4d 6d 4c 00 c1 ec  |...-?...~.MmL...|
     00000010  04 3b f3 80 d8 c4                                 |.;....|
    }
   })
  },
  LockTime: (uint32) 537127951
 }),
 sig: ([]uint8) {
 },
 ourBalance: (lnwire.MilliSatoshi) 5015000000 mSAT,
 theirBalance: (lnwire.MilliSatoshi) 4966416000 mSAT,
 fee: (btcutil.Amount) 0.00003584 BTC,
 feePerKw: (btcutil.Amount) 0.00004 BTC,
 dustLimit: (btcutil.Amount) 0.00000573 BTC,
 outgoingHTLCs: ([]lnwallet.PaymentDescriptor) <nil>,
 incomingHTLCs: ([]lnwallet.PaymentDescriptor) (len=1 cap=1) {
  (lnwallet.PaymentDescriptor) {
   RHash: (lnwallet.PaymentHash) (len=32 cap=32) {
    00000000  30 19 e5 af 58 e8 ff 4a  95 45 7f c0 44 31 f1 3c  |0...X..J.E..D1.<|
    00000010  40 5e ae 68 92 f9 50 7e  c7 85 37 1b 47 79 9d 34  |@^.h..P~..7.Gy.4|
   },
   RPreimage: (lnwallet.PaymentHash) (len=32 cap=32) {
    00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
   },
   Timeout: (uint32) 1257821,
   Amount: (lnwire.MilliSatoshi) 15000000 mSAT,
   LogIndex: (uint64) 1,
   HtlcIndex: (uint64) 1,
   ParentIndex: (uint64) 0,
   localOutputIndex: (int32) 0,
   remoteOutputIndex: (int32) 0,
   sig: (*btcec.Signature)(<nil>),
   addCommitHeightRemote: (uint64) 9,
   addCommitHeightLocal: (uint64) 9,
   removeCommitHeightRemote: (uint64) 0,
   removeCommitHeightLocal: (uint64) 0,
   OnionBlob: ([]uint8) (len=1366 cap=1366) {
    00000000  00 03 75 32 ed d2 b8 5b  bd 54 fa f5 3a bc 56 e2  |..u2...[.T..:.V.|
    00000010  00 1d fe f7 21 a8 55 01  32 27 cd a5 30 fa f6 aa  |....!.U.2'..0...|
    00000020  4f 41 e4 c7 e4 6f 81 0d  72 ad a2 50 2a 84 de 0f  |OA...o..r..P*...|
    00000030  3d 72 f4 06 5b 84 38 b9  9f e6 71 55 f7 8e 2d 1a  |=r..[.8...qU..-.|
    00000040  78 90 e2 4e cd da c2 1e  bd 78 d8 e6 7a 9f d3 88  |x..N.....x..z...|
    00000050  0c 7f a0 61 be 69 7e 60  b4 e6 c6 1b 15 e7 8a fd  |...a.i~`........|
    00000060  91 17 e2 81 4f 0a e7 8e  7e d3 33 a2 25 2a 31 d5  |....O...~.3.%*1.|
    00000070  7a 83 78 f3 a9 d0 f7 8e  26 ad c2 8f f1 99 58 e8  |z.x.....&.....X.|
    00000080  82 5d 97 05 d1 75 68 05  e4 97 45 22 a4 d7 36 66  |.]...uh...E"..6f|
    00000090  8b 1c 0e 04 f8 37 2e a2  f6 d0 04 ce f9 5d bc 36  |.....7.......].6|
    000000a0  20 03 67 e5 4c d4 f6 05  00 98 a9 2a 59 32 f2 95  | .g.L......*Y2..|
    000000b0  74 22 f9 07 3d 71 d1 60  ac 2a bb 02 ad 57 ec 0f  |t"..=q.`.*...W..|
    000000c0  00 a2 7f 4a 00 e5 d8 3a  db ab cb 58 5c 6d 55 84  |...J...:...X\mU.|
    000000d0  d9 03 51 64 d1 ce e6 ea  d1 4b b9 2f 05 db c6 8a  |..Qd.....K./....|
    000000e0  ee 0b c0 78 d9 97 23 79  8d c7 11 8b 73 f4 7a 2b  |...x..#y....s.z+|
    000000f0  ca c6 80 54 e8 f9 68 5c  93 88 65 ef 51 d3 4f 97  |...T..h\..e.Q.O.|
    00000100  84 a5 61 5d b2 ab 81 35  02 36 f9 37 4f d6 a6 82  |..a]...5.6.7O...|
    00000110  e8 ef c6 d8 82 43 ed 8e  82 27 a2 b6 f2 9b 72 6e  |.....C...'....rn|
    00000120  c9 49 de b4 08 16 c7 cb  5c 9f 43 72 04 5f b0 90  |.I......\.Cr._..|
    00000130  42 75 37 fa a5 e2 63 7b  0e e2 3a 92 df 61 9e 0d  |Bu7...c{..:..a..|
    00000140  ef 85 49 2b f4 5a f4 c7  8c f5 88 c3 3b 25 67 67  |..I+.Z......;%gg|
    00000150  9b bb 04 f4 92 e5 36 c7  77 6e 5c af 95 e6 12 3d  |......6.wn\....=|
    00000160  c7 d2 d7 df f3 cc 2f b2  49 60 ff 54 47 9a df 9c  |....../.I`.TG...|
    00000170  12 de cc 3a a5 41 c9 dd  fe 41 82 44 72 ff f8 13  |...:.A...A.Dr...|
    00000180  df 50 c3 4d f2 0f 35 1c  94 98 bc e4 b1 60 a8 de  |.P.M..5......`..|
    00000190  42 a7 3b 7a e6 f3 5a 1d  2c a7 72 71 82 64 11 f5  |B.;z..Z.,.rq.d..|
    000001a0  e2 bc 51 20 be 1c d5 ab  d4 ec 28 06 fc 19 7e 3a  |..Q ......(...~:|
    000001b0  dd 56 75 25 5e 80 96 bd  56 4e 32 42 4a dc cf e7  |.Vu%^...VN2BJ...|
    000001c0  32 7b 14 0c 6b 15 09 b8  3a a1 48 f3 d8 a1 f2 9c  |2{..k...:.H.....|
    000001d0  f3 0c b8 4b 83 ac 16 da  bf 26 8d 72 2a 6f 98 60  |...K.....&.r*o.`|
    000001e0  db 67 5d 72 e6 7a 1a e7  24 25 c6 dd 7b 8b e3 22  |.g]r.z..$%..{.."|
    000001f0  f8 25 6e dc 56 65 58 8c  67 f4 ed 0c ff 9d e1 b5  |.%n.VeX.g.......|
    00000200  91 43 bf d4 f6 31 1e f4  f2 58 0f d7 27 ce 5e 41  |.C...1...X..'.^A|
    00000210  79 18 55 ce 79 5c 79 17  42 51 f0 5d 89 fe 18 44  |y.U.y\y.BQ.]...D|
    00000220  ba 76 8f f8 9b 61 90 39  73 8f 6d d8 b1 e3 21 ba  |.v...a.9s.m...!.|
    00000230  6e a7 d6 56 2a 3f cc f4  32 97 69 5a bb cf 6d 88  |n..V*?..2.iZ..m.|
    00000240  83 b8 32 d6 2d ce 2a d6  73 0c 6d b2 4d 40 b4 38  |..2.-.*.s.m.M@.8|
    00000250  04 3f b9 38 fa 44 18 09  c2 5e 5f 59 72 99 40 85  |.?.8.D...^_Yr.@.|
    00000260  ed 0e bf 93 4e 71 24 13  b8 ab 71 78 0d 74 c9 9a  |....Nq$...qx.t..|
    00000270  77 2e b3 e6 83 19 f9 00  97 44 18 88 d9 1e b1 5c  |w........D.....\|
    00000280  9b c9 42 65 b5 9b b7 3b  79 43 0e 11 26 0d 45 d3  |..Be...;yC..&.E.|
    00000290  0c e9 ba eb 13 08 00 8b  c6 35 fd c3 12 85 c6 f6  |.........5......|
    000002a0  87 d1 69 b8 6e 17 b4 e1  ed 37 79 56 09 57 33 48  |..i.n....7yV.W3H|
    000002b0  8c 59 a1 9f fa b6 4e 60  75 42 71 fc 14 ec 75 60  |.Y....N`uBq...u`|
    000002c0  53 77 43 28 21 1c 9f 1b  15 27 58 df 1a b0 9e 04  |SwC(!....'X.....|
    000002d0  fb a6 33 31 7d 73 53 28  c6 29 2c f0 dc 07 1b 6b  |..31}sS(.),....k|
    000002e0  f2 30 3e 2b 67 d0 bd 9f  bf ee a4 82 1a 1e 14 38  |.0>+g..........8|
    000002f0  0a 85 56 cd f1 cb e2 47  92 90 be d9 ef 4b 2a 08  |..V....G.....K*.|
    00000300  29 d2 fb ff 81 d2 22 c6  7b c6 62 4d c3 39 20 4e  |).....".{.bM.9 N|
    00000310  9a 02 5e 93 c7 27 4e 27  17 23 68 17 85 11 c4 15  |..^..'N'.#h.....|
    00000320  47 0b 9d 80 f4 08 cb cd  ef a1 1a 4b a4 83 ca 1a  |G..........K....|
    00000330  a7 77 c0 f2 96 6e ab 34  0f 42 be 02 e9 a8 4d 4d  |.w...n.4.B....MM|
    00000340  c4 cd 06 c8 a8 63 53 36  00 4f 06 ec 7b 70 f1 7a  |.....cS6.O..{p.z|
    00000350  4c f4 9e 2b e9 f6 b4 36  6f 37 59 98 7f f9 e2 5e  |L..+...6o7Y....^|
    00000360  66 00 fc ca 34 91 98 e1  bb c7 4f 73 c0 29 31 42  |f...4.....Os.)1B|
    00000370  40 b2 88 4a f1 a0 61 8c  b0 1c 27 51 eb eb a8 00  |@..J..a...'Q....|
    00000380  62 c2 88 ba a6 a8 e4 ae  c3 69 db d5 44 27 59 4c  |b........i..D'YL|
    00000390  79 e6 e7 3a 9d 04 42 a7  51 fb d1 f8 22 71 17 8c  |y..:..B.Q..."q..|
    000003a0  16 06 c8 96 bf b8 62 82  99 ca 3b 5e 6c 3a c9 55  |......b...;^l:.U|
    000003b0  b8 5e 7d 17 8e e7 a5 cc  14 0d 74 4b f7 c0 6e 1d  |.^}.......tK..n.|
    000003c0  7a 67 13 42 ac 2c c5 88  cc 8f 59 01 cf fc f9 6d  |zg.B.,....Y....m|
    000003d0  ad 4f f2 a8 c1 57 e7 a1  fc 5d 29 5b 58 00 0e e3  |.O...W...])[X...|
    000003e0  bb d8 7f d0 42 8d 4e c7  54 87 fe e0 f9 91 d5 45  |....B.N.T......E|
    000003f0  58 2a 8a 47 4f c3 b7 39  e4 68 ca 18 1c 37 7e 1b  |X*.GO..9.h...7~.|
    00000400  a5 c3 40 01 b8 b6 a7 92  28 5d a5 50 0c 1e 15 72  |..@.....(].P...r|
    00000410  ab 4f 14 2b 3b 13 8e 2d  85 02 53 2b 7d b7 59 a6  |.O.+;..-..S+}.Y.|
    00000420  98 55 a0 42 64 d3 79 22  f0 fe 96 fb 30 eb 68 22  |.U.Bd.y"....0.h"|
    00000430  29 69 bf a1 24 23 0b ae  21 14 c9 0e e2 6e bb fd  |)i..$#..!....n..|
    00000440  d5 f7 cd 30 41 a0 a5 4a  9e 38 aa 51 08 f5 68 ed  |...0A..J.8.Q..h.|
    00000450  d3 bb 16 29 df 2b f3 67  a5 0b aa 81 2f 3f 65 17  |...).+.g..../?e.|
    00000460  92 14 4e 5d 04 a0 7f 77  90 35 2c 56 81 ee ed f2  |..N]...w.5,V....|
    00000470  4d 84 7e 4a 44 b8 80 a4  7c 58 3d 23 6a f9 f7 d1  |M.~JD...|X=#j...|
    00000480  1c 54 e8 08 a8 98 7b 97  91 67 5f de 0e eb 70 a1  |.T....{..g_...p.|
    00000490  16 01 b4 1c 38 93 80 72  fc 83 76 96 e8 db 9e df  |....8..r..v.....|
    000004a0  1b 5e 26 37 17 00 ae e8  fc 7b 86 d0 1c 9c 85 2e  |.^&7.....{......|
    000004b0  eb d5 74 1a 91 77 46 6b  93 fb 9c f1 6d 4a f8 54  |..t..wFk....mJ.T|
    000004c0  f4 0a ac 5b 5a 19 0e 20  9d 97 82 cd aa 84 39 7c  |...[Z.. ......9||
    000004d0  d4 78 b9 f5 07 d4 54 31  54 12 61 a4 54 11 ea b7  |.x....T1T.a.T...|
    000004e0  a0 58 19 35 d4 d3 30 2f  85 1c 1e bd 50 80 a7 bf  |.X.5..0/....P...|
    000004f0  81 55 f1 0a c5 0b 3c 09  ec b9 1e 3e 11 12 7b 9e  |.U....<....>..{.|
    00000500  bb 7d 5c 9b a5 dd a5 b6  c7 91 b9 81 f4 7c 68 74  |.}\..........|ht|
    00000510  5d 93 05 29 96 6c 43 1d  7e 7f f6 09 5a 2e c2 4e  |]..).lC.~...Z..N|
    00000520  2c dc 64 d2 e0 08 a8 d4  a7 c5 04 00 06 0c 08 37  |,.d............7|
    00000530  a4 0c ac 03 29 13 4f 73  72 49 ae 40 6e 40 25 f6  |....).OsrI.@n@%.|
    00000540  45 28 84 54 45 aa de 41  f8 97 18 39 73 23 11 1f  |E(.TE..A...9s#..|
    00000550  ee c4 62 f3 ba 2c                                 |..b..,|
   },
   ShaOnionBlob: ([32]uint8) (len=32 cap=32) {
    00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
   },
   FailReason: ([]uint8) <nil>,
   FailCode: (lnwire.FailCode) <unknown>,
   ourPkScript: ([]uint8) (len=34 cap=500) {
    00000000  00 20 30 9b c9 71 30 96  41 68 af c6 df 29 84 fe  |. 0..q0.Ah...)..|
    00000010  22 ac 5b 48 4a 92 89 a3  b0 4b c0 b5 b6 2c 7d 51  |".[HJ....K...,}Q|
    00000020  4c e1                                             |L.|
   },
   ourWitnessScript: ([]uint8) (len=139 cap=500) {
    00000000  76 a9 14 f8 6d d0 09 0a  e8 5f e1 b8 7c 1f cb 24  |v...m...._..|..$|
    00000010  fd e3 ff ed 32 5f a9 87  63 ac 67 21 02 fe 11 6c  |....2_..c.g!...l|
    00000020  00 e5 78 62 cd d6 e0 45  b9 fb 9b 1e 7b fa d0 fd  |..xb...E....{...|
    00000030  d1 1c 6c ee f7 df c5 c8  ee 1e bd ef 66 7c 82 01  |..l.........f|..|
    00000040  20 87 63 a9 14 d0 a5 e9  3c 68 a0 72 dc bc 97 2a  | .c.....<h.r...*|
    00000050  b8 a8 74 d7 b6 e6 72 64  0d 88 52 7c 21 03 5c e8  |..t...rd..R|!.\.|
    00000060  0b 5c 44 a8 00 42 11 85  e2 21 9e c2 26 d3 c2 fb  |.\D..B...!..&...|
    00000070  66 b6 ca 47 ac 2e 82 e0  db 4d a1 ee 24 d5 52 ae  |f..G.....M..$.R.|
    00000080  67 75 03 5d 31 13 b1 75  ac 68 68                 |gu.]1..u.hh|
   },
   theirPkScript: ([]uint8) (len=34 cap=500) {
    00000000  00 20 16 6f 59 dc 03 2f  c0 4b f1 82 78 15 62 df  |. .oY../.K..x.b.|
    00000010  d0 a8 a6 25 f2 db 81 79  d2 83 28 c4 6e fd 46 3e  |...%...y..(.n.F>|
    00000020  99 ad                                             |..|
   },
   theirWitnessScript: ([]uint8) (len=133 cap=500) {
    00000000  76 a9 14 11 55 79 9a ae  dc 3d 1a 50 78 05 1e c6  |v...Uy...=.Px...|
    00000010  7f 31 4c e5 7e 7f ff 87  63 ac 67 21 02 8c d0 76  |.1L.~...c.g!...v|
    00000020  48 52 98 1d 0b 0e c3 7b  bb 16 c7 b5 39 2d 05 c9  |HR.....{....9-..|
    00000030  de f0 87 e4 07 cd 1c 91  2e 11 27 63 c3 7c 82 01  |..........'c.|..|
    00000040  20 87 64 75 52 7c 21 03  77 26 a0 db 8a 06 f8 b6  | .duR|!.w&......|
    00000050  7a 56 76 ac ff d6 83 2f  8c 11 32 8c 79 66 0a 1c  |zVv..../..2.yf..|
    00000060  d7 48 af 59 12 28 2e cc  52 ae 67 a9 14 d0 a5 e9  |.H.Y.(..R.g.....|
    00000070  3c 68 a0 72 dc bc 97 2a  b8 a8 74 d7 b6 e6 72 64  |<h.r...*..t...rd|
    00000080  0d 88 ac 68 68                                    |...hh|
   },
   EntryType: (lnwallet.updateType) Add,
   isForwarded: (bool) false
  }
 },
 outgoingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 },
 incomingHTLCIndex: (map[int32]*lnwallet.PaymentDescriptor) {
 }
})

2018-01-07 01:37:29.549 [INF] NTFN: New spend subscription: utxo=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0
2018-01-07 01:37:29.549 [INF] PEER: peerID(2) loading ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:37:29.549 [INF] LNWL: Close observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) active
2018-01-07 01:37:29.549 [INF] BRAR: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) is now live, abandoning state contract for live version
2018-01-07 01:37:29.549 [DBG] BRAR: New contract detected, launching breachObserver
2018-01-07 01:37:29.549 [DBG] BRAR: Breach observer for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started 
2018-01-07 01:37:29.549 [INF] NTFN: New block epoch subscription
2018-01-07 01:37:29.549 [INF] NTFN: Cancelling spend notification for out_point=ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0, spend_id=2
2018-01-07 01:37:29.581 [INF] HSWC: ChannelLink(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) is starting
2018-01-07 01:37:29.581 [INF] HSWC: Added channel link with chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, short_chan_id=((lnwire.ShortChannelID) 1257623:16:0
)
2018-01-07 01:37:29.581 [INF] HSWC: HTLC manager for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) started, bandwidth=5015000000 mSAT
2018-01-07 01:37:29.581 [INF] HSWC: Attempting to re-resynchronize ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:37:29.581 [DBG] PEER: Received ChannelReestablish(next_local_height=10, remote_tail_height=9) from 172.17.0.5:60548
2018-01-07 01:37:29.581 [DBG] PEER: Sending ChannelReestablish(next_local_height=10, remote_tail_height=9) to 172.17.0.5:60548
2018-01-07 01:37:29.582 [INF] HSWC: Received re-establishment message from remote side for channel(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:37:29.582 [DBG] PEER: Received ChannelAnnouncement(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024) from 172.17.0.5:60548
2018-01-07 01:37:29.582 [INF] HSWC: Sending 2 updates to synchronize the state for ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0)
2018-01-07 01:37:29.582 [DBG] PEER: Sending UpdateFailHTLC(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, id=1, reason=f01fa1ed29a4b5b5dd6c175374ba166abd78b55e4f16401c73e2faa4bb7a1eb828cd8a31d38bb52619f3fe8f476bdae5e9a12c5b10958d2236be5c722b3cb13b51945d7a756e6350f6c8988019103a5352dee383d5252c04336ae7f7af54ed759ef548abd5c742daa98f1a0c7d97e47783e095609e13594f22f257637e4ffad55f7a65a3a0246f893a981c1a0cc918dff8f63c6b8e36645f2a3ac10d2511560ea9e68752ce4d6df928264434429ffc637e821609a51ad8c26f228dc32651c09c9a171ab4f386ba7095d57ab3bcaad2fc245d840d23ce62710e2d2d0fbcac7075b57dc09c2383b2c838b9e7c704702a1f17c6f9e9f340705b928680628731b6ca39c8230b1c56edc759db65461ed286c4434f16408507c93d78e8e3288f8a72718e8dbaca) to 172.17.0.5:60548
2018-01-07 01:37:29.582 [DBG] PEER: Sending CommitSig(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, num_htlcs=0) to 172.17.0.5:60548
2018-01-07 01:37:29.582 [DBG] PEER: Received ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=0, update_time=2018-01-06 13:47:32 +0000 UTC) from 172.17.0.5:60548
2018-01-07 01:37:29.582 [DBG] PEER: Received ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=1, update_time=2018-01-06 13:47:32 +0000 UTC) from 172.17.0.5:60548
2018-01-07 01:37:29.582 [DBG] PEER: Received NodeAnnouncement(node=038e84b9a94852b53029acfa740184141e9345963003d1cee34e91b3ffe441620e, update_time=2018-01-07 01:24:11 +0000 UTC) from 172.17.0.5:60548
2018-01-07 01:37:29.583 [DBG] PEER: Received NodeAnnouncement(node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, update_time=2018-01-07 01:37:29 +0000 UTC) from 172.17.0.5:60548
2018-01-07 01:37:29.583 [DBG] PEER: Received NodeAnnouncement(node=03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1, update_time=2018-01-07 01:29:46 +0000 UTC) from 172.17.0.5:60548
2018-01-07 01:37:29.583 [INF] DISC: Syncing channel graph state with 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, sending 2 vertexes and 1 edges
2018-01-07 01:37:29.583 [INF] SRVR: Attempting to send msgs 5 to: 03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:37:29.583 [DBG] PEER: Sending ChannelAnnouncement(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024) to 172.17.0.5:60548
2018-01-07 01:37:29.583 [DBG] PEER: Sending ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=0, update_time=2018-01-06 13:47:32 +0000 UTC) to 172.17.0.5:60548
2018-01-07 01:37:29.584 [DBG] PEER: Sending ChannelUpdate(chain_hash=000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943, short_chan_id=1382771111859585024, flag=1, update_time=2018-01-06 13:47:32 +0000 UTC) to 172.17.0.5:60548
2018-01-07 01:37:29.584 [DBG] PEER: Sending NodeAnnouncement(node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e, update_time=2018-01-07 01:24:00 +0000 UTC) to 172.17.0.5:60548
2018-01-07 01:37:29.584 [DBG] DISC: Ignoring node announcement for node not found in channel graph (038e84b9a94852b53029acfa740184141e9345963003d1cee34e91b3ffe441620e)
2018-01-07 01:37:29.584 [DBG] PEER: Sending NodeAnnouncement(node=03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1, update_time=2018-01-07 01:29:46 +0000 UTC) to 172.17.0.5:60548
2018-01-07 01:37:29.586 [DBG] DISC: Router rejected channel edge: Ignoring msg for known chan_id=1382771111859585024
2018-01-07 01:37:29.587 [DBG] DISC: Ignoring update (flags=1) for known chan_id=1382771111859585024
2018-01-07 01:37:29.588 [DBG] DISC: Ignoring update (flags=0) for known chan_id=1382771111859585024
2018-01-07 01:37:29.590 [DBG] DISC: Ignoring outdated announcement for 03bd979b4c2d4200a51b917581a5871b70e6a2b9e143f7c76f4bd0fd401d2640e1
2018-01-07 01:37:29.750 [DBG] PEER: Received RevokeAndAck(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, rev=0acccee74f23e1128ef9bbe5c5c3222f8c3402e7cf4718528167113ce80ae427, next_point=03e2aba237225fe36b8e8710e7052795768976dbdafd597755980f6c43ebb0733e) from 172.17.0.5:60548
2018-01-07 01:37:29.819 [INF] CRTR: Updated vertex data for node=03921ad8e9b4fbe64837ca91e69295591a279be0c8d6c98ccb6b6a5da4ca4c7f1e
2018-01-07 01:37:29.963 [DBG] PEER: Received CommitSig(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, num_htlcs=0) from 172.17.0.5:60548
2018-01-07 01:37:29.964 [ERR] HSWC: unable to process onion packet: sphinx packet replay attempted
2018-01-07 01:37:29.964 [ERR] HSWC: unable to decode onion hop iterator: TemporaryChannelFailure
2018-01-07 01:37:29.964 [DBG] PEER: Sending UpdateFailMalformedHTLC(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, id=1, fail_code=TemporaryChannelFailure) to 172.17.0.5:60548
2018-01-07 01:37:29.986 [DBG] PEER: Sending CommitSig(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, num_htlcs=0) to 172.17.0.5:60548
2018-01-07 01:37:29.987 [DBG] HSWC: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) forwarding 0 HTLC's
2018-01-07 01:37:30.022 [DBG] PEER: Sending RevokeAndAck(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, rev=807fb482dcb9f33515ab73bf7ce0626487c9c8423906970f6bf969808143d2fe, next_point=0385d3096896fad2610dd413a77fa85bf7be7df5ce960a561707fb29a1e646c70e) to 172.17.0.5:60548
2018-01-07 01:37:30.026 [DBG] PEER: Received RevokeAndAck(chan_id=af9d7ad292755f40362e3c5a0c6599ff3d6aec2e49a246b4643de3725efbd0ec, rev=5d798bae499715c9db121836ac25b40a7949f0ea1ca14b889956255fa78676dd, next_point=0396dc82e25d407c71918eb00f5fabc55441a7b2763514774327c69903608e7890) from 172.17.0.5:60548
2018-01-07 01:37:30.064 [DBG] HSWC: ChannelPoint(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) forwarding 0 HTLC's
2018-01-07 01:37:30.324 [INF] HSWC: ChannelLink(ecd0fb5e72e33d64b446a2492eec6a3dff99650c5a3c2e36405f7592d27a9daf:0) has exited
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x8d4d30]

goroutine 279 [running]:
github.com/lightningnetwork/lnd/lnwallet.(*LightningChannel).evaluateHTLCView(0xc4206ee000, 0xc4201937d0, 0xc42069f620, 0xc42069f618, 0xc, 0xc4204f5f01, 0xc4205944c0)
	/go/src/github.com/lightningnetwork/lnd/lnwallet/channel.go:2528 +0x820
github.com/lightningnetwork/lnd/lnwallet.(*LightningChannel).fetchCommitmentView(0xc4206ee000, 0x1, 0x3, 0x0, 0x2, 0x2, 0xc4206df320, 0x8f4285, 0xd2b440, 0xc4206ea210)
	/go/src/github.com/lightningnetwork/lnd/lnwallet/channel.go:2292 +0x199
github.com/lightningnetwork/lnd/lnwallet.(*LightningChannel).SignNextCommitment(0xc4206ee000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
	/go/src/github.com/lightningnetwork/lnd/lnwallet/channel.go:2962 +0x29e
github.com/lightningnetwork/lnd/htlcswitch.(*channelLink).updateCommitTx(0xc4200ec1e0, 0xc420596900, 0x0)
	/go/src/github.com/lightningnetwork/lnd/htlcswitch/link.go:987 +0x44
github.com/lightningnetwork/lnd/htlcswitch.(*channelLink).htlcManager(0xc4200ec1e0)
	/go/src/github.com/lightningnetwork/lnd/htlcswitch/link.go:538 +0x6fc
created by github.com/lightningnetwork/lnd/htlcswitch.(*channelLink).Start
	/go/src/github.com/lightningnetwork/lnd/htlcswitch/link.go:267 +0x12b