File tree 2 files changed +28
-15
lines changed
2 files changed +28
-15
lines changed Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* ]
4
+ insert_final_newline = true
5
+ end_of_line = lf
6
+
7
+ [* .rs ]
8
+ indent_style = space
9
+ indent_size = 4
10
+
11
+ [* .proto ]
12
+ indent_style = space
13
+ indent_size = 2
Original file line number Diff line number Diff line change @@ -3,31 +3,31 @@ syntax = "proto3";
3
3
package blockdaemon.solana.accountsdb_plugin_kafka.types ;
4
4
5
5
message UpdateAccountEvent {
6
- // The slot number when this update was emitted.
7
- uint64 slot = 1 ;
6
+ // The slot number when this update was emitted.
7
+ uint64 slot = 1 ;
8
8
9
- // The Pubkey for the account.
10
- bytes pubkey = 2 ;
9
+ // The Pubkey for the account.
10
+ bytes pubkey = 2 ;
11
11
12
- // The lamports held by the account.
13
- uint64 lamports = 3 ;
12
+ // The lamports held by the account.
13
+ uint64 lamports = 3 ;
14
14
15
- // The Pubkey of the owner program account.
16
- bytes owner = 4 ;
15
+ // The Pubkey of the owner program account.
16
+ bytes owner = 4 ;
17
17
18
- // This account's data contains a loaded program.
19
- bool executable = 5 ;
18
+ // This account's data contains a loaded program.
19
+ bool executable = 5 ;
20
20
21
- // The epoch at which this account will next owe rent.
22
- uint64 rent_epoch = 6 ;
21
+ // The epoch at which this account will next owe rent.
22
+ uint64 rent_epoch = 6 ;
23
23
24
- // The data held in this account.
25
- bytes data = 7 ;
24
+ // The data held in this account.
25
+ bytes data = 7 ;
26
26
27
27
// A global monotonically increasing atomic number, which can be used
28
28
// to tell the order of the account update. For example, when an
29
29
// account is updated in the same slot multiple times, the update
30
30
// with higher write_version should supersede the one with lower
31
31
// write_version.
32
- uint64 write_version = 8 ;
32
+ uint64 write_version = 8 ;
33
33
}
You can’t perform that action at this time.
0 commit comments