• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bmresearch / Solnet / 13089373729

01 Feb 2025 02:08PM UTC coverage: 76.471% (-1.0%) from 77.499%
13089373729

Pull #478

github

web-flow
Merge 80979ad37 into 4c29360b0
Pull Request #478: Add Address lookup table Instruction

1113 of 1690 branches covered (65.86%)

Branch coverage included in aggregate %.

22 of 121 new or added lines in 10 files covered. (18.18%)

1 existing line in 1 file now uncovered.

5114 of 6453 relevant lines covered (79.25%)

1308873.54 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Solnet.Programs/AddressLookupTableProgramInstruction.cs
1
using System.Collections.Generic;
2

3
namespace Solnet.Programs
4
{
5
    internal static class AddressLookupTableProgramInstruction
6
    {
7
        /// <summary>
8
        /// Represents the user-friendly names for the instruction types for the <see cref="AddressLookupTableProgram"/>.
9
        /// </summary>
NEW
10
        internal static readonly Dictionary<Values, string> Names = new()
×
NEW
11
        {
×
NEW
12
            { Values.CreateLookupTable, "Create Lookup Table" },
×
NEW
13
            { Values.FreezeLookupTable, "Freeze Lookup Table" },
×
NEW
14
            { Values.ExtendLookupTable, "Extend Lookup Table" },
×
NEW
15
            { Values.DeactivateLookupTable, "Deactivate Lookup Table" },
×
NEW
16
            { Values.CloseLookupTable, "Close Lookup Table" }
×
NEW
17
        };
×
18

19
        /// <summary>
20
        /// Represents the instruction types for the <see cref="AddressLookupTableProgram"/>.
21
        /// </summary>
22
        internal enum Values : byte
23
        {
24
            CreateLookupTable = 0,
25
            FreezeLookupTable = 1,
26
            ExtendLookupTable = 2,
27
            DeactivateLookupTable =3,
28
            CloseLookupTable =4
29
        }
30
    }
31
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc