This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Eth] | |
| NetworkId = 56 | |
| NoPruning = false | |
| NoPrefetch = false | |
| LightPeers = 100 | |
| UltraLightFraction = 75 | |
| TrieTimeout = 100000000000 | |
| EnablePreimageRecording = false | |
| EWASMInterpreter = "" | |
| EVMInterpreter = "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0xeaa85e656164ab925d168efd710a6ae0f67c5922 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0x059a547e6c978254f35e5b12082a29c8bd470454 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0xc3190dfc56e7e7ed28b981918c19d230388183ce |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0x286019058B95817F435FcCea2d6CCd2ABb8d2e8E |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0x2788d2a5b8f5C4E17276c72BB2cac25969CB6eef |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0x2788d2a5b8f5C4E17276c72BB2cac25969CB6eef |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0x6f96a8dA0AbD21523f074471c092FC9723274F2B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package be.ipc.crp.core.repository; | |
| import com.google.common.base.Optional; | |
| import org.springframework.data.repository.NoRepositoryBean; | |
| import org.springframework.data.repository.Repository; | |
| import java.io.Serializable; | |
| @NoRepositoryBean | |
| public interface IpcCrudRepository<T, ID extends Serializable> extends Repository<T, ID> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public abstract class AbstractSpecification<T> implements Specification<T> { | |
| protected String messageKey; | |
| public AbstractSpecification(String messageKey) { | |
| this.messageKey = messageKey; | |
| } | |
| public AbstractSpecification() { | |
| this.messageKey = "specification_" + getClass() + "_broken"; | |
| } |
NewerOlder