Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: solder test input wire for TurleTests to StateSignatureCollector output wire #17864

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
654b30d
test: enhance TurtleTests to connect a test component to the Consensu…
IvanKavaldzhiev Feb 7, 2025
47202f6
nit: keep instance of the holder, so that it can be used for validations
IvanKavaldzhiev Feb 7, 2025
1dc6400
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 10, 2025
58a5f2a
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 11, 2025
ffefc53
nit: resolve PR comments
IvanKavaldzhiev Feb 11, 2025
88557bd
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 12, 2025
c95ab05
nit: resolve PR comments
IvanKavaldzhiev Feb 12, 2025
b65e2a6
refactor: allow registering of multiple custom input wires
IvanKavaldzhiev Feb 12, 2025
e71fd4b
Merge remote-tracking branch 'origin/17638-connect-test-component-to-…
IvanKavaldzhiev Feb 12, 2025
ba72e96
test: solder test input wire for TurleTests to StateSignatureCollecto…
IvanKavaldzhiev Feb 12, 2025
06c0155
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 12, 2025
8fff5a5
Merge remote-tracking branch 'origin/17638-connect-test-component-to-…
IvanKavaldzhiev Feb 12, 2025
6c853d8
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 13, 2025
7ebd8bf
refactor: moves platformWiring bind method from SwirldsPlatform to Pl…
IvanKavaldzhiev Feb 13, 2025
fea264c
refactor: move more code into PlatformBuilder
IvanKavaldzhiev Feb 13, 2025
c9c9166
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 14, 2025
dab91b5
refactor: return some code restructure and simplify changes
IvanKavaldzhiev Feb 14, 2025
443207e
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 14, 2025
0c59232
style: spotless apply
IvanKavaldzhiev Feb 14, 2025
e447ee2
nit: remove redundant code
IvanKavaldzhiev Feb 14, 2025
ba1497a
nit: resolve PR comments
IvanKavaldzhiev Feb 14, 2025
d089301
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 14, 2025
22630a6
Merge remote-tracking branch 'origin/main' into 17638-connect-test-co…
IvanKavaldzhiev Feb 17, 2025
d9bf8a5
Merge remote-tracking branch 'origin/17638-connect-test-component-to-…
IvanKavaldzhiev Feb 17, 2025
2e316fe
nit: remove unnecessary code
IvanKavaldzhiev Feb 17, 2025
76af282
Merge remote-tracking branch 'origin/main' into 17639-connect-test-co…
IvanKavaldzhiev Feb 20, 2025
f683d96
style: spotless apply
IvanKavaldzhiev Feb 20, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
style: spotless apply
Signed-off-by: Ivan Kavaldzhiev <ivankavaldzhiev@gmail.com>
  • Loading branch information
IvanKavaldzhiev committed Feb 20, 2025
commit f683d96d579b21212648e2fe72151d9d7f6ef65f
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ public InputWire<Long> getPcesWriterRegisterDiscontinuityInput() {
public ComponentWiring<AppNotifier, Void> getNotifierWiring() {
return notifierWiring;
}

/**
* Get the output wiring for the state signature collector
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,4 @@
/*
* Copyright (C) 2025 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// SPDX-License-Identifier: Apache-2.0
package com.swirlds.platform.test.fixtures.turtle.signedstate;

import com.swirlds.platform.state.signed.ReservedSignedState;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,4 @@
/*
* Copyright (C) 2025 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// SPDX-License-Identifier: Apache-2.0
package com.swirlds.platform.test.fixtures.turtle.signedstate;

import com.swirlds.platform.state.signed.ReservedSignedState;
Expand Down
Loading